用C++ Builder在桌面上畫圖 (轉)

gugu99發表於2008-01-27
用C++ Builder在桌面上畫圖 (轉)[@more@]在桌面上畫圖
  在桌面上畫圖,只要幾個既可以實現,下面給出在C++BUILDER中具體的方法如下:
  1、在頭中定義變數
  Private: 
  Graphics::TBitmap *bmp;
  2、圖象變數的初始化:
  bmp=new Graphics::TBitmap();
  bmp->LoadFromFile("c:AboutLogo.bmp");
  3、在Paint的事件中
  void __fastcall TForm1::FormPaint(T *Sender)
  {
  HDC hdk;
  TRect rect;
  Application->Minimize();
  hdk=GetWindowDC(GetDesktopWindow());
  GetWindowRect(GetDesktopWindow(),&rect);
  BitBlt(hdk,(rect.Width()-bmp->Width)/2,(rect.Height()-bmp->Height)/2,bmp->Width,bmp->Height,bmp->Canvas->Handle,0,0,SRCCOPY);
  }
  4。銷燬TBitmap
  delete bmp;
  以上在C++ Builder 5+WINNT 4.0下實現

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10748419/viewspace-998535/,如需轉載,請註明出處,否則將追究法律責任。

相關文章