程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> Delphi >> 更換牆紙(Delphi)

更換牆紙(Delphi)

編輯:Delphi

/// <summary>
/// 通知Windows改變牆紙
/// </summary>
/// <param name="strFile">牆紙圖片路徑</param>
procedure TfrmPara.SetRegWallPaper(strFile: string);
var
  reg : TRegistry;
begin
  reg := TRegistry.Create;
  reg.RootKey := HKEY_CURRENT_USER;
  try
    if reg.OpenKey('Control Panel\Desktop', False) then
    begin
      reg.WriteString('TileWallpaper', '0');
      reg.WriteString('WallpaperStyle', '2');
      reg.WriteString('Wallpaper', strFile);
      reg.WriteString('ConvertedWallpaper', strFile);
      reg.WriteString('OriginalWallpaper', strFile);
      reg.CloseKey;
      // 向Windows發送消息, 通知Windows更換牆紙
      SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, PChar(strFile), SPIF_UPDATEINIFILE or SPIF_SENDWININICHANGE);
    end;
  finally
    reg.Free;
  end;
end;
/// <summary>
/// 用指定的方式改變牆紙
/// </summary>
/// <param name="strFile">牆紙圖片文件</param>
/// <param name="style">樣式</param>
procedure TfrmPara.SetWallPaper(strFile: string; style: Integer);
var
  dt : IActiveDesktop;
  wpo : TWallPaperOpt;
  ws : WideString;
begin
  dt := CreateComObject(CLSID_ActiveDesktop) as IActiveDesktop;
  ws := strFile;
  case style of
    0 : wpo.dwStyle := WPSTYLE_CENTER; //居中
    1 : wpo.dwStyle := WPSTYLE_TILE; //平鋪
    2 : wpo.dwStyle := WPSTYLE_STRETCH; //拉伸
    3 : wpo.dwStyle := WPSTYLE_KEEPASPECT; //Win7
    4 : wpo.dwStyle := WPSTYLE_CROPTOFIT; //Win7
  else
    wpo.dwStyle := WPSTYLE_CENTER;
  end;
  wpo.dwSize := SizeOf(wpo);
  dt.SetWallpaperOptions(wpo, 0);
  dt.SetWallpaper(PWideChar(ws), 0);
  dt.ApplyChanges(AD_APPLY_ALL);
end;



摘自 落魄的雞

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