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

Delphi控件源码

开发平台:

Delphi

  1. unit OutlookBarUnit;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   fcOutlookList, ExtCtrls, fcClearPanel, fcButtonGroup,
  6.   fcOutlookBar, StdCtrls, ComCtrls, fcLabel, fcImgBtn, fcButton, fcShapeBtn,
  7.   fcDemoRichEdit, fcImager, fcCombo, fcTreeCombo, ImgList;
  8. type
  9.   TOutlookBarForm = class(TForm)
  10.     fcOutlookBar1: TfcOutlookBar;
  11.     fcOutlookBar1OutlookList1: TfcOutlookList;
  12.     fcOutlookBar1fcShapeBtn1: TfcShapeBtn;
  13.     fcOutlookBar1fcShapeBtn2: TfcShapeBtn;
  14.     ImageList1: TImageList;
  15.     fcOutlookBar2: TfcOutlookBar;
  16.     fcOutlookBar2fcImageBtn1: TfcImageBtn;
  17.     fcOutlookBar2fcImageBtn2: TfcImageBtn;
  18.     fcOutlookBar2fcImageBtn3: TfcImageBtn;
  19.     Edit1: TEdit;
  20.     fcLabel1: TfcLabel;
  21.     fcLabel2: TfcLabel;
  22.     fcLabel3: TfcLabel;
  23.     fcDemoRichEdit1: TfcDemoRichEdit;
  24.     fcImager1: TfcImager;
  25.     CheckBox5: TCheckBox;
  26.     fcLabel4: TfcLabel;
  27.     fcShapeBtn1: TfcShapeBtn;
  28.     fcTreeCombo1: TfcTreeCombo;
  29.     procedure CheckBox5Click(Sender: TObject);
  30.   private
  31.     { Private declarations }
  32.   public
  33.     { Public declarations }
  34.   end;
  35. var
  36.   OutlookBarForm: TOutlookBarForm;
  37. implementation
  38. {$R *.DFM}
  39. procedure TOutlookBarForm.CheckBox5Click(Sender: TObject);
  40. begin
  41.   with fcoutlookbar2 do begin
  42.      if (Sender as TCheckBox).checked then
  43.      begin
  44.         Imager:= fcImager1;
  45.      end
  46.      else begin
  47.         Imager:=nil;
  48.      end
  49.   end
  50. end;
  51. end.