Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a game and I have windows form (WF) coded in visual C# 2010 express. In the WF there are on-click controls for the game, and they are linked to the game itself (for e.x if i press a button in the WF something will happen in the game).

But there is a problem: The WF and the game are in two separate windows. this make the application messy. Can somebody tell me how to put the two parts of the application in one window?

share|improve this question
1  
How is the game programmed? Is it done in GDI or GDI+? – Brett Wolfington Jan 22 at 20:54
I'm not sure xD i think it is GDI+. btw i forgot to say that I am using the XNA framework to draw the game :) – OPMagicPotato Jan 22 at 21:07

closed as not a real question by DaveShaw, John Koerner, Ram kiran, Will Jan 23 at 21:31

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

You could probably just put your game in a Panel on the WinForm. Hard to be exact without more information about how the game is coded.

Edit: Based on the additional information, this post would be the answer.

share|improve this answer
I am using the xna framework to draw and render sprites. I recently added the windows form as a part of the application in order to have more in-detail controls for the game (previously the controls were very messy, using the keyboard). And if your solution still applies, how can i put the whole game inside a Panel inside the WF? – OPMagicPotato Jan 22 at 21:11
@OPMagicPotato please see my edit and follow the link – Malcolm O'Hare Jan 22 at 21:18

Not the answer you're looking for? Browse other questions tagged or ask your own question.