I want to create a level editor, using a Windows Forms Application.
Here is the layout that i want to achieve:
BLUE -> Windows form control
PURPLE -> Canvas, handled differently (Yeah, Windows forms controls too, but not for the same use of it)
I have a problem though, how to render the Canvas in a proper way without using a thread ?
(Look at my other thread here: Access object from other thread)
I thought about a timer, but I don't know if it's reliable.
Ideally a thread would be nice but Windows doesn't like the fact that you want to interact between thread so it's messed up to be polite.
If you know how to achieve that, well, thanks ! :)