Problematic MDI/XNA
Hey peeps... I've got a problem.. I want to use XNA to draw graphs in a C# Project.. In MDI windows.. The thing is, all the examples of how to create an XNA application says u need to run the loop (something like this atleast)
while (xnaForm.Created)
{
xnaForm.nextFrame();
xnaForm.renderFrame();
Application.DoEvents();
}
problem is.. I dont find any way to use the Application class within an MDI form... I'd reeeeally like some help here!
Thanx ppx
Enuff enuff!
C# btw.
|