程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> C# >> C#入門知識 >> 編程實現改變win7主題,編程實現win7主題

編程實現改變win7主題,編程實現win7主題

編輯:C#入門知識

編程實現改變win7主題,編程實現win7主題


一  : 解析問題

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

 

 

 

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: 寫代碼  

[csharp] view plaincopy
  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.   
  13. namespace win7改變主題  
  14. {  
  15.     public partial class Form1 : Form  
  16.     {  
  17.         public Form1()  
  18.         {  
  19.             InitializeComponent();  
  20.             string sPath = Environment.GetEnvironmentVariable("windir");//獲取系統變量 windir(windows)  
  21.             DirectoryInfo directoryInfo = new DirectoryInfo(sPath + @"\Resources\Themes\");  
  22.             foreach (FileInfo i in directoryInfo.GetFiles("*.theme"))  
  23.            {  
  24.                comboBox1.Items.Add(i.FullName);  
  25.            }  
  26.         }  
  27.   
  28.         private void button1_Click(object sender, EventArgs e)  
  29.         {  
  30.             if (comboBox1.SelectedIndex == -1)  
  31.             {  
  32.                 return;  
  33.             }  
  34.             string sFile = comboBox1.SelectedItem.ToString();  
  35.             string sCmd = string.Format(@"  
  36. rundll32.exe %SystemRoot%\system32\shell32.dll,Control_RunDLL %SystemRoot%\system32\desk.cpl desk,@Themes /Action:OpenTheme /file:""{0}""", sFile); //cmd命令  
  37.             Process cmd = new Process();  
  38.             cmd.StartInfo.FileName = "cmd";  
  39.             cmd.StartInfo.RedirectStandardInput = true;  
  40.             cmd.StartInfo.RedirectStandardOutput = true;  
  41.             cmd.StartInfo.CreateNoWindow = true;  
  42.             cmd.StartInfo.UseShellExecute = false;  
  43.             cmd.Start();  
  44.             cmd.StandardInput.WriteLine(sCmd);  
  45.             cmd.StandardInput.Flush();  
  46.             cmd.StandardInput.Close();  
  47.             cmd.Close();  
  48.             cmd.Dispose();  
  49.         }  
  50.     }  
  51. }  

 

二 執行程序  如圖:

 

 

 

三 : 程序源代碼 下載:

 

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


win7怎改變主題

你好 是這樣的 點擊鼠標右鍵選擇 個性化 欄 在彈出來的對話框 就可以根據個人喜好設置主題 不過 系統自帶的主題一般不咋 的 建議你去 win7 之家裡面 或者 多特win7 專區裡面下載 如果有需要 把你郵箱給我 可以給你傳幾個 如和你意 請采納答案 謝謝
 

WIN7的主題,《我的電腦》的背景怎更改變

你說的是文件夾的背景嗎?
 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved