ufrmGridLineCount.pas
上传用户:yjb1804
上传日期:2021-01-30
资源大小:3105k
文件大小:1k
源码类别:

Email服务器

开发平台:

Delphi

  1. unit ufrmGridLineCount;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, ExtCtrls, cxGraphics, cxControls, cxContainer, cxEdit,
  6.   cxTextEdit, cxMaskEdit, cxDropDownEdit, cxLabel, Menus,
  7.   cxLookAndFeelPainters, StdCtrls, cxButtons;
  8. type
  9.   TfrmGridLineCount = class(TForm)
  10.     pnl1: TPanel;
  11.     pnl2: TPanel;
  12.     cbRow: TcxComboBox;
  13.     cbCol: TcxComboBox;
  14.     cbBorlder: TcxComboBox;
  15.     lbl1: TcxLabel;
  16.     lbl2: TcxLabel;
  17.     lbl3: TcxLabel;
  18.     btn1: TcxButton;
  19.     btn2: TcxButton;
  20.   private
  21.     { Private declarations }
  22.   public
  23.     { Public declarations }
  24.   end;
  25. var
  26.   frmGridLineCount: TfrmGridLineCount;
  27. implementation
  28. {$R *.dfm}
  29. end.