编程实现改变win7主题

时间:2024-10-18 17:07:20

一  : 解析问题

1. Windows 7 主题在:%windir%\Resources\Themes  :

编程实现改变win7主题

2: 我们通过shell 命令  (这个是msdn中提到的)

rundll32.exe %SystemRoot%\system32\shell32.dll,Control_RunDLL %SystemRoot%\system32\desk.cpl desk,@Themes /Action:OpenTheme /file:" %SystemRoot%\Resources\Themes\architecture.theme"

3: 写代码

  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9. using System.IO;
  10. using System.Threading;
  11. using System.Diagnostics;
  12. namespace win7改变主题
  13. {
  14. public partial class Form1 : Form
  15. {
  16. public Form1()
  17. {
  18. InitializeComponent();
  19. string sPath = Environment.GetEnvironmentVariable("windir");//获取系统变量 windir(windows)
  20. DirectoryInfo directoryInfo = new DirectoryInfo(sPath + @"\Resources\Themes\");
  21. foreach (FileInfo i in directoryInfo.GetFiles("*.theme"))
  22. {
  23. comboBox1.Items.Add(i.FullName);
  24. }
  25. }
  26. private void button1_Click(object sender, EventArgs e)
  27. {
  28. if (comboBox1.SelectedIndex == -1)
  29. {
  30. return;
  31. }
  32. string sFile = comboBox1.SelectedItem.ToString();
  33. string sCmd = string.Format(@"
  34. rundll32.exe %SystemRoot%\system32\shell32.dll,Control_RunDLL %SystemRoot%\system32\desk.cpl desk,@Themes /Action:OpenTheme /file:""{0}""", sFile); //cmd命令
  35. Process cmd = new Process();
  36. cmd.StartInfo.FileName = "cmd";
  37. cmd.StartInfo.RedirectStandardInput = true;
  38. cmd.StartInfo.RedirectStandardOutput = true;
  39. cmd.StartInfo.CreateNoWindow = true;
  40. cmd.StartInfo.UseShellExecute = false;
  41. cmd.Start();
  42. cmd.StandardInput.WriteLine(sCmd);
  43. cmd.StandardInput.Flush();
  44. cmd.StandardInput.Close();
  45. cmd.Close();
  46. cmd.Dispose();
  47. }
  48. }
  49. }

二 执行程序  如图:

编程实现改变win7主题

三 : 程序源代码 下载:

http://download.****.net/detail/qq283868910/3866000