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

  • SEARCH
  • Home
  • 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 1018453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T10:51:34+00:00 2026-05-16T10:51:34+00:00

How could I achieve pin to desktop effect (i.e immune against Show Desktop command)

  • 0

How could I achieve “pin to desktop” effect (i.e immune against “Show Desktop” command) in Win 7, using FindWindow + SetParent approach, or any other approach that would work in XP as well ?
I know I could create a gadget, but I’d like to have backwards compatibility with XP, where I have this code doing it fine:

IntPtr hWnd = FindWindow(null, "Untitled - Notepad");
IntPtr hDesktop = FindWindow("ProgMan", "Program Manager");
SetParent(hWnd, hDesktop);
  • 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-16T10:51:34+00:00Added an answer on May 16, 2026 at 10:51 am

    in my WPF app, I was able to solve it using a timer, it’s working both in XP and Win 7.

    public MainWindow()
    {
        InitializeComponent();
    
        // have some timer to fire in every 1 second
        DispatcherTimer detectShowDesktopTimer = new DispatcherTimer();
        detectShowDesktopTimer.Tick += new EventHandler(detectShowDesktopTimer_Tick);
        detectShowDesktopTimer.Interval = new TimeSpan(0, 0, 1);
        detectShowDesktopTimer.Start();
    }
    
    #region support immunizing against "Show Desktop"
    [DllImport("user32.dll")]
    private static extern IntPtr GetForegroundWindow();
    [DllImport("user32.dll")]
    public static extern bool SetForegroundWindow(IntPtr hWnd);
    [DllImport("user32.dll")]
    private static extern int GetWindowText(IntPtr hWnd, StringBuilder text, int count);
    
    private string GetWindowText(IntPtr handle)
    {
        int chars = 256;
        StringBuilder buff = new StringBuilder(chars);
        if (GetWindowText(handle, buff, chars) > 0)
            return buff.ToString();
        else
            return string.Empty;
    }
    #endregion
    
    private void detectShowDesktopTimer_Tick(object sender, EventArgs e)
    {
        IntPtr fore = GetForegroundWindow();
        if (string.IsNullOrWhiteSpace(GetWindowText(fore)))
            ShowDesktopDetected();
    }
    
    private void ShowDesktopDetected()
    {
        WindowInteropHelper wndHelper = new WindowInteropHelper(this);
        SetForegroundWindow(wndHelper.Handle);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How could I achieve the following: document.all.regTitle.innerHTML = 'Hello World'; Using jQuery where regTitle
On the iPhone, how could I achieve the same tiled background effect? For example,
How I could achieve batch update/insert using SQLCommand . I wanted to create SQLCommand
I was wondering how i could achieve using <?php?> in javascript for url's? There's
I want to have inner glow effect of button when focused. I could achieve
I was wondering how I could achieve this effect. Firstly content currently is in
I have a JTextArea where lines are highlighted upon right-click. While I could achieve
How could i multiply a string by a number to achieve n amount of
I know I could code what I'm trying to achieve, but I'd like to
I have one intresting requirement to achieve. could you please help? Please find the

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.