十年

  :: 首页 :: 新随笔 :: 联系 :: 订阅 :: 管理 ::

修改windows里的开始按钮的位图

/修改

var 
  Form1: TForm1; 
  StartButton: hWnd; 
  OldBitmap: THandle; 
  NewImage: TPicture; 

/ 将代码放入FormCreate事件

procedure TForm1.FormCreate(Sender: TObject); 
begin 
  NewImage :
= TPicture.create; 
  NewImage.LoadFromFile(
'C:WindowsCircles.BMP'); 
  StartButton := FindWindowEx 
                 (FindWindow( 
                    
'Shell_TrayWnd', nil), 
                     0,'Button', nil); 
  OldBitmap := SendMessage(StartButton, 
                           BM_SetImage, 
0
                           NewImage.Bitmap.Handle); 
end


/还原
procedure TForm1.FormDestroy(Sender: TObject); 
begin 
  SendMessage(StartButton,BM_SetImage,
0,OldBitmap); 
  NewImage.Free; 
end

posted on 2005-01-22 15:51  留不住的时光  阅读(372)  评论(0)    收藏  举报