Making Windows Forms Pop Under | CodeGuru

Making Windows Forms Pop Under

Figure 1 Pop-under windows are windows that, when created, are immediately shuttled behind all other windows in the z-order. In fact, many times you don’t notice them until you’ve closed or minimized all other open windows. Basically, they’re seen as a less obtrusive means of advertising than pop-ups that require immediate (and usually resentful) attention […]

Written By
CodeGuru Staff
CodeGuru Staff
Apr 28, 2004
2 minute read
CodeGuru content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More

Figure 1

Pop-under windows are windows that, when created, are immediately shuttled behind all other windows in the z-order. In fact, many times you don’t notice them until you’ve closed or minimized all other open windows. Basically, they’re seen as a less obtrusive means of advertising than pop-ups that require immediate (and usually resentful) attention from the user. With the lines between browser-based Web applications and traditional Windows applications being blurred every day, it should come as no surprise that Windows programmers are looking for ways to emulate the (infamous) pop-under effect utilized by Web marketers. Therefore, in this week’s article, we’ll look at the steps required to pull of this stunt…er…task.

Note: If you also would like to see how pop-under windows are created in JavaScript, you can read about that in an article by Joe Burns on one of our sister sites—HTMLGoodies.com.

  1. The function that’s used to modify the window position is the Win32 API SetWindowPos. Therefore, the first thing you’ll need to do is to include the following using statement to import and use this native function from your C# application:
  2. using System.Runtime.InteropServices;
  3. To import the native SetWindowPos function, use the DllImport attribute and define the function’s signature as follows where I’m also specifying a few of the constants defined in the Platform SDK C++ header file WinUser.h. (Note that while I’ve chosen to define these types within a class called Win32, that is purely a subjective choice. You can name the class anything you like or simply include these type definitions in an already-existing class.)
  4. class Win32
    {
       [DllImport("user32.dll", EntryPoint = "SetWindowPos")]
       public static extern bool SetWindowPos(
          int hWnd,               // window handle
          int hWndInsertAfter,    // placement-order handle
          int X,                  // horizontal position
          int Y,                  // vertical position
          int cx,                 // width
          int cy,                 // height
          uint uFlags);           // window positioning flags
       public const int HWND_BOTTOM     = 0x1;
       public const uint SWP_NOSIZE     = 0x1;
       public const uint SWP_NOMOVE     = 0x2;
       public const uint SWP_SHOWWINDOW = 0x40;
    }
    
  5. Implement a helper method (ShoveToBackground) to call the SetWindowPos function at the appropriate times.
  6.    private void ShoveToBackground()
       {
          Win32.SetWindowPos((int)this.Handle,
             Win32.HWND_BOTTOM,
             0, 0, 0, 0,
             Win32.SWP_NOMOVE | Win32.SWP_NOSIZE |
             Win32.SWP_SHOWWINDOW);
       }
    
  7. Finally, implement handlers for the form’s Activate and Resize events and have them both simply call the helper ShoveToBackground method.
  8. private void Form1_Activated(object sender, System.EventArgs e)
    {
       ShoveToBackground();
    }
    
    private void Form1_Resize(object sender, System.EventArgs e)
    {
       ShoveToBackground();
    }
    

Now, when the form is first executed or activated from the task bar or task list, it will always flicker and then immediately get “pushed” to the background as you see in Figure 1.

CodeGuru Logo

CodeGuru covers topics related to Microsoft-related software development, mobile development, database management, and web application programming. In addition to tutorials and how-tos that teach programmers how to code in Microsoft-related languages and frameworks like C# and .Net, we also publish articles on software development tools, the latest in developer news, and advice for project managers. Cloud services such as Microsoft Azure and database options including SQL Server and MSSQL are also frequently covered.

Property of TechnologyAdvice. © 2026 TechnologyAdvice. All Rights Reserved

Advertiser Disclosure: Some of the products that appear on this site are from companies from which TechnologyAdvice receives compensation. This compensation may impact how and where products appear on this site including, for example, the order in which they appear. TechnologyAdvice does not include all companies or all types of products available in the marketplace.