make game window "always on top" in XNA - Stack Overflow most recent 30 from stackoverflow.com2009-12-19T14:54:53Zhttp://stackoverflow.com/feeds/question/1128211http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1128211/make-game-window-always-on-top-in-xna0make game window "always on top" in XNADanny2009-07-14T21:36:28Z2009-07-16T13:54:57Z
<p>I want to make the XNA game window be in "windowed" mode but "always on top", is there a way to do this?</p>
http://stackoverflow.com/questions/1128211/make-game-window-always-on-top-in-xna/1128830#11288303Answer by Marcus for make game window "always on top" in XNAMarcus2009-07-15T00:47:55Z2009-07-15T00:47:55Z<p><a href="http://www.pinvoke.net/default.aspx/user32/SetWindowPos.html" rel="nofollow">http://www.pinvoke.net/default.aspx/user32/SetWindowPos.html</a></p>
<p>Include the values from the sample Page in a WinApi class and call this function from your game class:</p>
<pre><code>WinApi.SetWindowPos(this.Window.Handle, HWND_TOPMOST, 0, 0, 0, 0, TOPMOST_FLAGS);
</code></pre>
<p>That should do it.</p>
http://stackoverflow.com/questions/1128211/make-game-window-always-on-top-in-xna/1128968#11289681Answer by Danny for make game window "always on top" in XNADanny2009-07-15T01:37:58Z2009-07-15T01:37:58Z<p>Thanks for your response, the code from that webpage wouldn't compile for me, however it did point me in the right direction, this is the code I am using (using XNA 3.1)</p>
<p>First, within the same namespace as the game copy and paste in this code</p>
<pre><code>class User32
{
[DllImport("user32.dll")]
public static extern void SetWindowPos(uint Hwnd, int Level, int X, int Y, int W, int H, uint Flags);
}
</code></pre>
<p>I just wrote it above my main "Game" class, since I only use it within my Game class.</p>
<p>Then within the LoadContent() of the game class (MUST be within the LoadContent() method, doesn't work properly anywhere else), write this somewhere...</p>
<pre><code>User32.SetWindowPos((uint)this.Window.Handle, -1, 0, 0, graphics.PreferredBackBufferWidth, graphics.PreferredBackBufferHeight, 0);
</code></pre>
<p>note: "graphics" is the instance of GraphicsDeviceManager that is premade for you whenever you start your project.</p>
<p>This can also be used to position the game window wherever you want on the screen. For me I wanted it in the top left corner of the screen.</p>
http://stackoverflow.com/questions/1128211/make-game-window-always-on-top-in-xna/1137774#11377740Answer by Gavin O'Brien for make game window "always on top" in XNAGavin O'Brien2009-07-16T13:54:57Z2009-07-16T13:54:57Z<p>The easiest way is to set the graphics device to display full screen. Place the following code in your main game method:</p>
<pre><code>this.graphics.IsFullScreen = true;
</code></pre>