Tagged Questions
-1
votes
1answer
195 views
Client Server Multiplayer Project
I have reviewed the relevant WinForms/XNA samples here and here.
However, my requirements are slightly different.
Given the following:
I am developing a multiplayer (Client - Server) game
There ...
2
votes
1answer
1k views
XNA + Windows Forms: How make them work together without making the trick of the custom GraphicsDeviceControl?
What I've found is a solution where you have to code a custom GraphicsDeviceControl to put inside the form (the well known tutorial from the APPHub), but that's not what I'm searching for.
I would ...
0
votes
2answers
108 views
MenuStrip in XNA 4.0
Is it possible to place a MenuStrip into a XNA 4.0 project. This project is intended for PC-s only and I already have openFile dialogs, but I cant get the MenuStrip drawn. If this is not possible what ...
1
vote
3answers
688 views
interaction with WinForm and Xna
Okay, this is may be very simple.
I embedded my XNA project in WinForms through "this tutorial" and it works fine even with XNA 4. Now I have a 3D CoilSpring object and the number of loops for this ...
3
votes
1answer
947 views
XNA mouse position in windows forms
I am using this code in Update method in XNA RenderControl in Windows Forms:
...
Mouse.WindowHandle = renderControl1.Handle;
MouseState stat=Mouse.GetState();
...
Everything works fine but when I ...