Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3989604
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T06:23:38+00:00 2026-05-20T06:23:38+00:00

I have a small .NET program that produces a fullscreen window. I would like

  • 0

I have a small .NET program that produces a fullscreen window. I would like to keep this window the backmost window (i.e. other windows should open on top of it, and it should not come to the front when clicked on). Is there any practical way to do this under Windows Presentation Foundation?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T06:23:39+00:00Added an answer on May 20, 2026 at 6:23 am

    As far as I know, you’ll have to P/Invoke to do this right. Call the SetWindowPos function, specifying the handle to your window and the HWND_BOTTOM flag.

    This will move your window to the bottom of the Z order, and prevent it from obscuring other windows.

    Sample code:

    Private Const SWP_NOSIZE As Integer = &H1
    Private Const SWP_NOMOVE As Integer = &H2
    Private Const SWP_NOACTIVATE As Integer = &H10
    
    <DllImport("user32.dll", CharSet:=CharSet.Auto)> _
    Private Shared Function SetWindowPos(hWnd As IntPtr, hWndInsertAfter As IntPtr,
                                         X As Integer, Y As Integer,
                                         cx As Integer, cy As Integer,
                                         uFlags As Integer) As Boolean
    End Function
    
    
    Public Sub SetAsBottomMost(ByVal wnd As Window)
        ' Get the handle to the specified window
        Dim hWnd As IntPtr = New WindowInteropHelper(wnd).Handle
    
        ' Set the window position to HWND_BOTTOM
        SetWindowPos(hWnd, New IntPtr(1), 0, 0, 0, 0,
                     SWP_NOSIZE Or SWP_NOMOVE Or SWP_NOACTIVATE)
    End Sub
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We have a small .Net program that we sell with individual licenses. The individual
I have written a small GUI based vb.net program that speaks to embedded devices
I have a module that needs to run a small .Net command-line program to
I have a small VB.NET application that I'm working on using the full version
I have a small JS function that does Ajax for me and another like
I have a small database that I need help designing. I have a VB.NET
My question is about handling temporary files in a small .NET program. This program/utility
I have a small program that is trying to wrap an NHibernate insert into
I have two small VB.NET applications that connect to the same Oracle database. One
I have a .NET software with me which would install in the computer. That

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.