Click here to Skip to main content
15,867,686 members
Articles / Programming Languages / C#
Article

C# Wallpaper Switcher

Rate me:
Please Sign up or sign in to vote.
3.00/5 (1 vote)
28 Nov 2007CPOL1 min read 46.9K   679   22   9
Windows service code to change wallpaper at configured intervals

Introduction

This is a simple Windows service which switches the wallpapers at configured intervals.

Background

The intention of this article is to make my/your free time a little bit useful.

Using the Code

The start() method of this Windows service does the configuration and starts the timer. The ConfigReader class is for reading the XML file which is included in the attached zip file.

C#
public void Start()
{
//Get the config file path
configPath = Assembly.GetExecutingAssembly().Location;
int i = configPath.LastIndexOf("\\");
configPath = configPath.Substring(0, i) + "\\AppConfig.xml";

// Create, configure & Start timer 
t = new Timer(1000 * double.Parse(WallpaperChanger.ConfigReader.GetConfigValue
    (configPath, "TimerIntervalSeconds")));
t.Elapsed += new ElapsedEventHandler(t_Elapsed);

//Get the image files in an array
arrFiles = System.IO.Directory.GetFiles(WallpaperChanger.ConfigReader.GetConfigValue
    (configPath, "WallpaperDirectory"), "*.bmp", 
    System.IO.SearchOption.AllDirectories);
t.Start();
}

Assembly.GetExecutingAssembly().Location gives you the path of the current assembly. AppConfig.xml configuration file has the interval and the directory of the wallpapers. This AppConfig.xml should be in the same directory of the EXE file.

C#
t = new Timer(1000 * double.Parse
    (WallpaperChanger.ConfigReader.GetConfigValue(configPath, "TimerIntervalSeconds")));

This line initializes the timer with the configured interval from AppConfig.xml.

C#
t.Elapsed += new ElapsedEventHandler(t_Elapsed);

Create a handler for Elapsed event will be fired at every interval:

C#
arrFiles = System.IO.Directory.GetFiles(WallpaperChanger.ConfigReader.GetConfigValue
    (configPath, "WallpaperDirectory"), "*.bmp", System.IO.SearchOption.AllDirectories);

This line gets the full path of all the BMP image files in the directory which is configured in the AppConfig.xml.

t.Start(); starts the timer.

The t_Elapsed() method will be called based on the configured regular interval. This function does the main job as stated in this article's title.

C#
void t_Elapsed(object sender, ElapsedEventArgs e)
{
//Set the wallpaper based on global variable currentIndex
if (currentIndex < arrFiles.Length)
{
WinAPI.SystemParametersInfo(WinAPI.SPI_SETDESKWALLPAPER, 1, 
    arrFiles[currentIndex], WinAPI.SPIF_SENDCHANGE);
currentIndex++;
}
else
{
currentIndex = 0;
}
}

The WINAPI class is shown below:

C#
public class WinAPI
{
[DllImport("user32.dll", CharSet = CharSet.Auto)]
public static extern int SystemParametersInfo
    (int uAction, int uParam, string lpvParam, int fuWinIni);
public const int SPI_SETDESKWALLPAPER = 20;
public const int SPIF_SENDCHANGE = 0x2;
} 

The following system call sets the desktop with the image file given in arrFiles[currentIndex].

C#
WinAPI.SystemParametersInfo(WinAPI.SPI_SETDESKWALLPAPER, 1, 
    arrFiles[currentIndex], WinAPI.SPIF_SENDCHANGE);

Points of Interest

This is meant to make you smile. If it does not, this article is not for you.

History

  • 28th November, 2007: Initial post

License

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


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

Comments and Discussions

 
QuestionAny body know how to set wallpaper inside window service Pin
dilhaniranaweera5-Jan-13 21:04
dilhaniranaweera5-Jan-13 21:04 
AnswerRe: Any body know how to set wallpaper inside window service Pin
Member 1041105019-Nov-13 22:21
Member 1041105019-Nov-13 22:21 
BugNot change the Wallpaper like Windows Service Pin
laynusfloyd22-Jul-12 5:51
laynusfloyd22-Jul-12 5:51 
Only work when run like Windows app. Please, any suggestions?
Generalhi Pin
sandeepparekh2-Jun-11 21:19
sandeepparekh2-Jun-11 21:19 
GeneralProblem with Vista Pin
maxald11-Mar-09 2:19
maxald11-Mar-09 2:19 
GeneralCPU Usage Pin
aSarafian29-Nov-07 1:48
aSarafian29-Nov-07 1:48 
GeneralRe: CPU Usage Pin
shanAtCP29-Nov-07 4:33
shanAtCP29-Nov-07 4:33 
GeneralSuggestion Pin
Maharishi Bhatia28-Nov-07 20:11
Maharishi Bhatia28-Nov-07 20:11 
GeneralRe: Suggestion [modified] Pin
shanAtCP28-Nov-07 20:20
shanAtCP28-Nov-07 20:20 

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.