Denis Ionov
Denis Ionov

Reputation: 127

Simple graphical editor on Windows Phone 7

I want to create a simple graphical editor for Windows Phone 7. User will choose an instrument and draw smth. To drawing i want to use WriteableBitmap, because per-pixel drawing needed sometimes. Is that a good idea or any best way exists?

Upvotes: 1

Views: 183

Answers (1)

Mustafa Ekici
Mustafa Ekici

Reputation: 7470

its good idea becouse of performance loss,and good for GC,when creating the WriteableBitmap, the application must define the image properties such as the width, height, and pixel format. This allows the WriteableBitmap object to allocate the memory once and just update pixel data as needed.

Upvotes: 3

Related Questions