Unit1.cpp
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小:1k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #include <clipbrd.hpp>
  4. #pragma hdrstop
  5. #include "Unit1.h"
  6. //---------------------------------------------------------------------------
  7. #pragma package(smart_init)
  8. #pragma resource "*.dfm"
  9. TForm1 *Form1;
  10. //---------------------------------------------------------------------------
  11. __fastcall TForm1::TForm1(TComponent* Owner)
  12.         : TForm(Owner)
  13. {
  14. }
  15. //---------------------------------------------------------------------------
  16. void __fastcall TForm1::Button1Click(TObject *Sender)
  17. {
  18.   TRect rc;
  19.   Graphics::TBitmap *Bmp;
  20.   TCanvas *ScrCv;
  21.   Bmp = new Graphics::TBitmap();
  22.   Bmp->Width=Screen->Width;
  23.   Bmp->Height=Screen->Height;
  24.   ScrCv=new TCanvas();
  25.   ScrCv->Handle=GetDC(0);
  26.   rc=Rect(0,0,Screen->Width,Screen->Height);
  27.   Bmp->Canvas->CopyRect(rc,ScrCv,rc);
  28.   Clipboard()->Assign(Bmp);
  29.   delete Bmp;
  30.   delete ScrCv;
  31. }
  32. //---------------------------------------------------------------------------