TilerUnit.cpp
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #pragma hdrstop
  4. #include "TilerUnit.h"
  5. //---------------------------------------------------------------------------
  6. #pragma package(smart_init)
  7. #pragma link "fcImager"
  8. #pragma link "fcLabel"
  9. #pragma link "fcOutlookList"
  10. #pragma link "fcButton"
  11. #pragma link "fcButtonGroup"
  12. #pragma link "fcClearPanel"
  13. #pragma link "fcImgBtn"
  14. #pragma link "fcOutlookBar"
  15. #pragma link "fcShapeBtn"
  16. #pragma resource "*.dfm"
  17. TTilerDemoForm *TilerDemoForm;
  18. //---------------------------------------------------------------------------
  19. __fastcall TTilerDemoForm::TTilerDemoForm(TComponent* Owner)
  20.         : TForm(Owner)
  21. {
  22. }
  23. //---------------------------------------------------------------------------
  24. void __fastcall TTilerDemoForm::fcControlBar1OutlookList1ItemChange(
  25.       TfcCustomOutlookList *OutlookList, TfcOutlookListItem *Item)
  26. {
  27.   if (OutlookList->Selected == NULL) return;
  28.   Graphics::TBitmap* ABitmap = new Graphics::TBitmap;
  29.   ImageList1->GetBitmap(OutlookList->Selected->Index, ABitmap);
  30.   fcImager1->Picture->Assign(ABitmap);
  31.   ABitmap->Free();
  32. }
  33. //---------------------------------------------------------------------------