Tagged Questions
8
votes
1answer
290 views
How do I stop stretching during window re-size in XNA?
In my windowed mode XNA game when the user resizes the window the game stops updating the window and the last frame drawn is stretched and distorted until the user releases the mouse and the resize ...
2
votes
2answers
99 views
How do I drag my widgets without dragging other widgets?
I have a bunch of drag-able widgets on screen. When I am dragging one of the widgets around, if I drag the mouse over another widget, that widget then gets "snagged" and is also dragged around.
...
7
votes
4answers
3k views
Should I use Events in a XNA Game?
I created a button class which draw a button on the screen. When I click on it, I want to see something happening. In WinForm, I would simply use the event OnClick of the button. What about XNA?
...