Click here to Skip to main content
15,888,113 members
Articles / Desktop Programming
Tip/Trick

Setting The Virtual Desktop Background (In Windows 10)

Rate me:
Please Sign up or sign in to vote.
4.22/5 (13 votes)
15 Sep 2015CPOL2 min read 134.5K   11.9K   17   42
An application which allows you to set a different wallpaper for each desktop

Set Wallpapers

Introduction

After upgrading to Windows 10, I started to use the virtual desktops feature. There is more than one person who uses the computer so we decided each one will have a desktop of his own.

We wanted to set a different wallpaper for each desktop, so we could distinguish them easily. I searched the web to see how to do it and I was amazed to discover that there is no way to do such a thing (!)

That's how I got the idea to write this small application which allows you to set a different wallpaper for each desktop.

Basically, it uses APIs to get the current desktop and checks every small period of time to see if it has changed. If it detects a change, it sets the wallpaper to the appropriate one (configured by the user in the main screen).

For convenience, I set the app to start at the system tray so you can add it to the startup menu and run it when the computer starts.

In the main screen, you can set the wallpaper for each desktop (supports up to 3 desktops for the time being). The app remembers the last configured settings (in an INI file) and loads them the next time it starts.

The code for the interaction with the desktop is taken from several places on the web, the main one is - http://stackoverflow.com/questions/32416843/altering-win10-virtual-desktop-behavior.

Using the Code

This function demonstrated how to get the current desktop index (the first one is 0 of course).

C++
private int GetDesktopIndex()
{
    for (int i = 0; i < Desktop.Count; ++i)
    {
        if (Desktop.Current.Equals(Desktop.FromIndex(i)))
        {
            return i;
        }
    }

    return -1;
}

// Each tick it checks if the desktop has changed and if so - sets the background

private void timer1_Tick(object sender, EventArgs e)
{
    if (string.IsNullOrEmpty(txtPic1.Text) || string.IsNullOrEmpty(txtPic2.Text))
    {
        return;
    }

    var index = GetDesktopIndex();
    if(index == -1)
    {
        return;
    }

    if (_lastDesktop == index)
    {
        return;
    }

    SetBackground(index);
    _lastDesktop = index;
}

//I call the SystemParametersInfo function using native API calls</p>

 [DllImport("user32.dll", CharSet = CharSet.Auto)]
            internal static extern int SystemParametersInfo(
                int uAction,
                int uParam,
                String lpvParam,
                int fuWinIni);

//This is how we set the desktop background (Using the Registry and the API)

RegistryKey key = Registry.CurrentUser.OpenSubKey(@"Control Panel\Desktop", true);

// Fill
key.SetValue(@"PicturePosition", "10");
key.SetValue(@"TileWallpaper", "0");
key.SetValue(@"WallpaperStyle", "6");

key.Close();

const int setDesktopBackground = 20;
const int updateIniFile = 1;
const int sendWindowsIniChange = 2;

NativeMethods.SystemParametersInfo(
    setDesktopBackground, 
    0, 
    pic,
    updateIniFile | sendWindowsIniChange);

Points of Interest

I discovered how to interact with virtual desktops and use the relevant APIs for Windows 10. 

Also, this was the first time I've created an app that has a system tray icon.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Israel Israel
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
QuestionNonfunctional for me, no GUI Pin
rpullm168_comcast20-Nov-23 20:50
rpullm168_comcast20-Nov-23 20:50 
GeneralMy vote of 1 Pin
Andre Rovigatti3-Sep-23 12:09
Andre Rovigatti3-Sep-23 12:09 
GeneralMy vote of 1 Pin
Andre Rovigatti3-Sep-23 12:08
Andre Rovigatti3-Sep-23 12:08 
QuestionHow to install? Pin
Member 1597904514-Apr-23 4:01
Member 1597904514-Apr-23 4:01 
QuestionWhich download? / uninstall ? Pin
Gary Pajer1-Feb-23 2:42
Gary Pajer1-Feb-23 2:42 
AnswerRe: Which download? / uninstall ? Pin
OriginalGriff1-Feb-23 2:43
mveOriginalGriff1-Feb-23 2:43 
AnswerFor those running into issues.... Pin
User 1447141410-Jan-23 18:42
User 1447141410-Jan-23 18:42 
QuestionI'm not a coder how do i get it to work Pin
Member 1574685224-Aug-22 13:15
Member 1574685224-Aug-22 13:15 
AnswerRe: I'm not a coder how do i get it to work Pin
User 1447141410-Jan-23 18:43
User 1447141410-Jan-23 18:43 
QuestionDid not work for me... threw exception error when I added 2nd image of three Pin
Member 1491571417-Aug-20 21:03
Member 1491571417-Aug-20 21:03 
BugRe: Did not work for me... threw exception error when I added 2nd image of three Pin
Member 1491571417-Aug-20 22:15
Member 1491571417-Aug-20 22:15 
GeneralRe: Did not work for me... threw exception error when I added 2nd image of three Pin
User 1447141410-Jan-23 18:44
User 1447141410-Jan-23 18:44 
QuestionThe program is not working, MIDL_INTERFACE changed. Pin
Member 111315765-Jun-19 6:53
Member 111315765-Jun-19 6:53 
AnswerRe: The program is not working, MIDL_INTERFACE changed. Pin
Alexander Hudson10-Sep-19 5:29
Alexander Hudson10-Sep-19 5:29 
QuestionVery slow program startup Pin
Tom Toolman5-Dec-18 13:20
Tom Toolman5-Dec-18 13:20 
QuestionUse event trigger instead of timer? Pin
AntonioKatim31-Mar-18 3:49
AntonioKatim31-Mar-18 3:49 
AnswerRe: Use event trigger instead of timer? Pin
AntonioKatim31-Mar-18 4:30
AntonioKatim31-Mar-18 4:30 
QuestionNot working on windows 10 anniversary update Pin
Member 1269023317-Aug-16 7:01
Member 1269023317-Aug-16 7:01 
AnswerRe: Not working on windows 10 anniversary update Pin
Member 1268626319-Aug-16 4:05
Member 1268626319-Aug-16 4:05 
GeneralRe: Not working on windows 10 anniversary update Pin
Member 1269490220-Aug-16 7:33
Member 1269490220-Aug-16 7:33 
GeneralRe: Not working on windows 10 anniversary update Pin
Member 1268626321-Aug-16 11:15
Member 1268626321-Aug-16 11:15 
GeneralRe: Not working on windows 10 anniversary update Pin
Member 1269490221-Aug-16 17:16
Member 1269490221-Aug-16 17:16 
GeneralRe: Not working on windows 10 anniversary update Pin
Member 1268626322-Aug-16 2:13
Member 1268626322-Aug-16 2:13 
GeneralRe: Not working on windows 10 anniversary update Pin
Member 1269490222-Aug-16 5:34
Member 1269490222-Aug-16 5:34 
GeneralRe: Not working on windows 10 anniversary update Pin
Member 1268626322-Aug-16 6:40
Member 1268626322-Aug-16 6:40 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.