使用C#制作的更换桌面背景程序

程序

使用C#制作的更换桌面背景程序

今天是周末,可是没什么地方去,所以有上网来了,突然发现了一篇用

VB调用API来更换桌面的程序,我想既然VB可以C#也一定能行,所以就

试着做了一下,好吧,来看看我的代码吧.一步一步来,你也能行.

那还是先让我们来了解一个API吧,SystemParametersInfo,这个API的功能

很简单就是通过一些参数的设置来完成对系统的一些外观设置.

函数原型如下:
BOOL SystemParametersInfo(
  UINT uiAction,  
  UINT uiParam,   
  PVOID pvParam,  
  UINT fWinIni    
);

该函数返回一个Bool值.非0成功,否则当然是失败了,那样的话根据MSDN的说法

还将会设置GetLastError(关于这一点可以参考MSDN)

这里还必须提到的一点是,关于uAction常数表,这张表里面包括了很多关于这些参数

的设置工作.因为它将影响到.前面两个参数.第三个参数在我们这里的用法是得到

图片的路径.第四个参数看名字也猜的到.随同这个函数设置的用户配置参数保存在win.ini

或注册表里,或同时保存在这两个地方.一般是0X1或者0X2就可以了.

下面我在给出有关该API变成C#的代码如下:

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

 

//图片

 

看见上面的图了吗?我来主要说说那个两个button,

首先叫到的是选择按钮代码如下:

private void button1_Click(object sender, System.EventArgs e)
  {
   openFileDialog1.InitialDirectory = @"C:\";
   if (openFileDialog1.ShowDialog() == DialogResult.OK)
   {
    textBox1.Text = openFileDialog1.FileName;
    string[] strA=textBox1.Text.Split('.');
    Bitmap bm=new Bitmap(textBox1.Text);
    if(strA[1]!="bmp")
    {
     filepath=strA[0]+".bmp";
     bm.Save(filepath);
    }
    else
     filepath=textBox1.Text;
    this.pictureBox1.Image=bm;
   }
正如你看到的,那样,由于只能将BMP图象设置成桌面所以必须要转化一下,上面是我的方法

也许你还有更好的,那就说说吧.

然后是更换按钮,代码如下:

private void button2_Click(object sender, System.EventArgs e)
  {
   int nResult ;
   if (File.Exists(filepath))
   {
    nResult = SystemParametersInfo(20, 1, filepath,  0x1 | 0x2 );
    if(nResult==0)
     MessageBox.Show("没有更新成功!");
    else
    MessageBox.Show("正在更换背景图片...");
   }
   else
    MessageBox.Show("文件不存在!");

  }
这个实现起来在简单不过了,仅仅是调用刚才上面讲到的API就可以了.

好了,我把全部代码都给你,很简单,如下:

 using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Runtime.InteropServices;
using System.IO;
namespace desktopWalk
{
 /// <summary>
 /// Form1 的摘要说明。
 /// </summary>
 public class Form1 : System.Windows.Forms.Form
 {
  private System.Windows.Forms.Button button1;
  private System.Windows.Forms.Button button2;
  private System.Windows.Forms.TextBox textBox1;
  private System.Windows.Forms.GroupBox groupBox1;
  private System.Windows.Forms.GroupBox groupBox2;
  private System.Windows.Forms.Label label1;
  private System.Windows.Forms.PictureBox pictureBox1;
  private System.Windows.Forms.Label label2;
  private System.Windows.Forms.OpenFileDialog openFileDialog1;
  private string filepath;
  /// <summary>
  /// 必需的设计器变量。
  /// </summary>
  private System.ComponentModel.Container components = null;
  [DllImport("user32.dll", CharSet=CharSet.Auto)]
  public static  extern int SystemParametersInfo (int uAction , int uParam , string lpvParam , int fuWinIni) ;

  public Form1()
  {
   //
   // Windows 窗体设计器支持所必需的
   //
   InitializeComponent();

   //
   // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
   //
  }

  /// <summary>
  /// 清理所有正在使用的资源。
  /// </summary>
  protected override void Dispose( bool disposing )
  {
   if( disposing )
   {
    if (components != null)
    {
     components.Dispose();
    }
   }
   base.Dispose( disposing );
  }

  #region Windows Form Designer generated code
  /// <summary>
  /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  /// 此方法的内容。
  /// </summary>
  private void InitializeComponent()
  {
   this.button1 = new System.Windows.Forms.Button();
   this.button2 = new System.Windows.Forms.Button();
   this.textBox1 = new System.Windows.Forms.TextBox();
   this.groupBox1 = new System.Windows.Forms.GroupBox();
   this.label2 = new System.Windows.Forms.Label();
   this.pictureBox1 = new System.Windows.Forms.PictureBox();
   this.label1 = new System.Windows.Forms.Label();
   this.groupBox2 = new System.Windows.Forms.GroupBox();
   this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
   this.groupBox1.SuspendLayout();
   this.SuspendLayout();
   //
   // button1
   //
   this.button1.Location = new System.Drawing.Point(312, 62);
   this.button1.Name = "button1";
   this.button1.TabIndex = 0;
   this.button1.Text = "选择背景";
   this.button1.Click += new System.EventHandler(this.button1_Click);
   //
   // button2
   //
   this.button2.Location = new System.Drawing.Point(312, 120);
   this.button2.Name = "button2";
   this.button2.TabIndex = 1;
   this.button2.Text = "更换背景";
   this.button2.Click += new System.EventHandler(this.button2_Click);
   //
   // textBox1
   //
   this.textBox1.Location = new System.Drawing.Point(16, 64);
   this.textBox1.Name = "textBox1";
   this.textBox1.Size = new System.Drawing.Size(272, 21);
   this.textBox1.TabIndex = 2;
   this.textBox1.Text = "";
   //
   // groupBox1
   //
   this.groupBox1.Controls.AddRange(new System.Windows.Forms.Control[] {
                     this.label2,
                     this.pictureBox1,
                     this.label1,
                     this.groupBox2,
                     this.button1,
                     this.button2,
                     this.textBox1});
   this.groupBox1.Location = new System.Drawing.Point(16, 16);
   this.groupBox1.Name = "groupBox1";
   this.groupBox1.Size = new System.Drawing.Size(392, 240);
   this.groupBox1.TabIndex = 3;
   this.groupBox1.TabStop = false;
   this.groupBox1.Text = "更换背景图片";
   //
   // label2
   //
   this.label2.Location = new System.Drawing.Point(8, 128);
   this.label2.Name = "label2";
   this.label2.Size = new System.Drawing.Size(72, 23);
   this.label2.TabIndex = 6;
   this.label2.Text = "预览图片:";
   //
   // pictureBox1
   //
   this.pictureBox1.Location = new System.Drawing.Point(104, 120);
   this.pictureBox1.Name = "pictureBox1";
   this.pictureBox1.Size = new System.Drawing.Size(184, 104);
   this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
   this.pictureBox1.TabIndex = 5;
   this.pictureBox1.TabStop = false;
   //
   // label1
   //
   this.label1.Location = new System.Drawing.Point(24, 24);
   this.label1.Name = "label1";
   this.label1.Size = new System.Drawing.Size(64, 23);
   this.label1.TabIndex = 4;
   this.label1.Text = "背景图片:";
   //
   // groupBox2
   //
   this.groupBox2.Location = new System.Drawing.Point(8, 104);
   this.groupBox2.Name = "groupBox2";
   this.groupBox2.Size = new System.Drawing.Size(376, 8);
   this.groupBox2.TabIndex = 3;
   this.groupBox2.TabStop = false;
   //
   // Form1
   //
   this.AutoScaleBaseSize = new System.Drawing.Size(6, 14);
   this.ClientSize = new System.Drawing.Size(432, 269);
   this.Controls.AddRange(new System.Windows.Forms.Control[] {
                    this.groupBox1});
   this.MaximizeBox = false;
   this.Name = "Form1";
   this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
   this.Text = "设置背景";
   this.groupBox1.ResumeLayout(false);
   this.ResumeLayout(false);

  }
  #endregion

  /// <summary>
  /// 应用程序的主入口点。
  /// </summary>
  [STAThread]
  static void Main()
  {
   Application.Run(new Form1());
  }

  private void button2_Click(object sender, System.EventArgs e)
  {
   int nResult ;
   if (File.Exists(filepath))
   {
    nResult = SystemParametersInfo(20, 1, filepath,  0x1 | 0x2 );
    if(nResult==0)
     MessageBox.Show("没有更新成功!");
    else
    MessageBox.Show("正在更换背景图片...");
   }
   else
    MessageBox.Show("文件不存在!");

  }

  private void button1_Click(object sender, System.EventArgs e)
  {
   openFileDialog1.InitialDirectory = @"C:\";
   if (openFileDialog1.ShowDialog() == DialogResult.OK)
   {
    textBox1.Text = openFileDialog1.FileName;
    string[] strA=textBox1.Text.Split('.');
    Bitmap bm=new Bitmap(textBox1.Text);
    if(strA[1]!="bmp")
    {
     filepath=strA[0]+".bmp";
     bm.Save(filepath);
    }
    else
     filepath=textBox1.Text;
    this.pictureBox1.Image=bm;
   }

  }
 }
}

 

时间: 2024-12-02 20:17:39

使用C#制作的更换桌面背景程序的相关文章

Win8系统更换桌面背景的办法

  想要把自己电脑桌面背景变得更加美观漂亮起来,那么就要学会怎么去设置和操作.所以今天小编就来讲讲在win8系统中怎么更换系统桌面背景的办法吧! 操作步骤: 1.打开"个性化",有两种方法:在桌面空白处单击鼠标右键点击"个性化"选项;或点击win8边栏选项选择"设置"选项后选择"个性化"选项; 2.开启个性化控制面板后可以选择不同的桌面主题; 3.点击"桌面背景"即进入桌面背景设置界面; 4.点击"

win7电脑更换桌面背景提示内部错误怎么办?

  很多朋友都喜欢不时的更换自己的电脑背景,因为这样可以让自己不容易产生视觉疲劳,也可以给自己带来一些新鲜感,当然,这样也可以让我们更好的去体验ghost win7 64位旗舰版下载的强大视觉效果.不过最近有使用ghost win7电脑的朋友来诉苦,说是不知道为什么,自己在更换电脑背景的时候会提示内部错误,即便是换个背景也会出现一样的错误,那么这个问题是怎么出现的呢?咱们要如何去解决呢? 1.首先,咱们返回到ghost win7电脑的桌面位置,然后在桌面找到计算机图标,咱们双击打开计算机,然后在

Win10怎样更换桌面背景

Win10来啦,相信很多小伙伴已经忍不住升级了.那么怎样更换Win10的桌面背景呢?小编来和大家交流一下方法. 首先我们找到一张自己喜欢的背景图片. 最简单的方法就是,在图片编辑器中,我们找到右上角的三个点.单击. 找到下方的"设置为桌面背景",然后单击即可. 这样就设置好啦. 当然还有其他方法.我们打开开始--设置 找到"个性化"并打开. 在最下方"选择图片"中点击浏览. 找到自己喜欢的图片并选择. 这是背景已经变过来了~不信回到桌面看看. 就

怎样让电脑自动更换桌面背景

Windows 7支持多张桌面背景切换的功能让我们的桌面更加绚丽,但是对于喜欢按照文件夹分门别类保存图片的用户来说,在设置桌面背景时如果指定了包含子目录的文件夹,如"wallpaper",但其下又有"风景"."动物"等几个子目录,在显示桌面背景时则只能显示wallpaper文件夹下的图片,"风景"等子目录里的图片则无法显示,实在算得上有些傻帽-- ◎ 系统方案的局限之处 关于另选桌面背景的问题,Windows 7提供了两种不同

windows 8 如何更换桌面背景

方法一: 1. 在桌面模式下,按键盘的[WIN]+[X]组合键打开高级管理工具,选择[控制面板].      2. 在控制面板中,选择[个性化].    3. 然后点击窗口下方的[桌面背景],如下图所示:  4. 选择[图片存储位置].    5. 在打开的图片框中,选择一张图片,点击下方的[保存更改]即可.   方法二: 1. 打开需要设置为桌面背景图片的文件夹,如下图:    2. 使用鼠标右键点击其中一张图片,然后选择[设置为桌面背景]即可.   

win7桌面背景幻灯片功能:桌面随时变

今天的主题是 Windows 7 中一项简单好玩的功能,连隔壁打扫卫生的阿姨都知道的,这就是 Windows 7 中新增的"壁纸变变变",官方名称叫做"桌面背景幻灯片". 在Windows XP之前的时代,我们只能选择一张静态图片作为桌面背景,系统自带的显然不够个性,自己下载的看久了难免会审美疲劳. 用过Windows Vista 的朋友一定还记得当时非常流行的一个功能"Windows DreamScene",通过将高清视频作为桌面背景,以前静止

win7系统怎么改修桌面背景

  win7系统怎么改修桌面背景 1.桌面上鼠标点击右键,找到"个性化" 点击; 2.点击"个性化",然后找到"桌面背景"再点击; 3.这时候就会出现很多桌面背景界面,很多人都会发现,其实Win 7壁纸和XP的设置是有差异的,Win 7显示的是系统默认微软的一些桌面壁纸,比较丰富,选择性多; 4.如果你对默认的壁纸不太满意,那么可以选择自己想要的图片.在"图片位置"下拉,事先把你想要的图片放在图片库里面,就会显示出来了.如果图

Win8.1系统开始屏幕怎么显示桌面背景

  Win8.1系统开始屏幕怎么显示桌面背景?Win8.1系统开始屏幕显示桌面背景的方法分享给大家,Win8.1设置桌面背景的方法很简单,和win7系统的设置方法差不多.但是Win8.1多了一个开始屏幕,导致桌面的背景和开始屏幕的背景可能出现不一样的现象.那么有没有什么方法可以让win8.1系统开始屏幕显示桌面背景呢?方法当然是可以的,参考下面教程进行设置即可. 具体方法如下: 1.其实很简单我们只要找到你下载的图片文件,然后右键点击该图片,在弹出的菜单中选择"设置为桌面面背景"; 2

win7系统桌面背景怎么设置成自己想要的类型

  win7系统桌面背景怎么设置成自己想要的类型呢?操作步骤如下所示: 1.桌面上鼠标点击右键,找到"个性化" 点击. 2.点击"个性化",然后找到"桌面背景"再点击. 3.这时候就会出现很多桌面背景界面,很多人都会发现,其实Win 7壁纸和XP的设置是有差异的,Win 7显示的是系统默认微软的一些桌面壁纸,比较丰富,选择性多. 4.如果你对默认的壁纸不太满意,那么可以选择自己想要的图片.在"图片位置"下拉,事先把你想要的图片