Hi
I'm moving a small isometric level editor over from WF to WPF, and in my WF editor I use to render the 'world' view to a off-screen bitmap, then render that bitmap to a panel with additional UI over the top (e.g cursors, helper lines ect).
I was just wondering in WPF whats the best way to go about this? I'll need to be able to render +1500 bitmaps, to something (another bitmap, some sort of buffer not sure hence why I'm asking :) ). It will need to have an interactive frame rate too.
Important info I guess,
1st Stage: I load all the images (pngs) I'll need into memory (not sure what to store them in yet use to be Bitmap class).
2nd Stage: Start world render
a stage: Clear world view
b stage: I need to render the same image multiple time in different location (empty floor tiles).
c stage: Lots of different images in different location and sometimes part of an image (selective pixels).
So most of the time its whole images that need to be render other times its pixels.
Any help would be appreciated.
Thanks