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

Delphi控件源码

开发平台:

Delphi

  1. unit dblabelu;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   ExtCtrls, DBCtrls, Db, fcLabel, DBTables, StdCtrls, fcpanel, fcImager,
  6.   ComCtrls, fcDemoRichEdit;
  7. type
  8.   TJustifyLabelDemoForm = class(TForm)
  9.     DataSource1: TDataSource;
  10.     Table1: TTable;
  11.     DBNavigator1: TDBNavigator;
  12.     fcGroupBox1: TfcGroupBox;
  13.     fcImager1: TfcImager;
  14.     fcPanel3: TfcPanel;
  15.     fcLabel2: TfcLabel;
  16.     fcDemoRichEdit1: TfcDemoRichEdit;
  17.     Panel1: TPanel;
  18.     Panel2: TPanel;
  19.     fcLabel1: TfcLabel;
  20.     procedure FormShow(Sender: TObject);
  21.   private
  22.     { Private declarations }
  23.   public
  24.     { Public declarations }
  25.   end;
  26. var
  27.   JustifyLabelDemoForm: TJustifyLabelDemoForm;
  28. implementation
  29. {$R *.DFM}
  30. procedure TJustifyLabelDemoForm.FormShow(Sender: TObject);
  31. begin
  32.    fcDemoRichEdit1.Anchors := [akLeft,akTop,akBottom];
  33. end;
  34. end.