unbounddesigndefineddemomain.pas
来自「胜天进销存源码,国产优秀的进销存」· PAS 代码 · 共 66 行
PAS
66 行
unit UnboundDesignDefinedDemoMain;
interface
uses
Windows, Forms, Messages, SysUtils, Classes, ActnList, ImgList, Controls, Menus,
StdCtrls, cxButtons, cxCheckBox, cxContainer, cxEdit, cxTextEdit,
cxMaskEdit, cxSpinEdit, ExtCtrls, cxGridLevel, cxGridCustomTableView,
cxGridCardView, cxGridDBCardView, cxClasses, cxControls,
cxGridCustomView, cxGrid, ComCtrls, cxStyles, cxCustomData, cxGraphics,
cxFilter, cxData, DB, cxDBData, cxDataStorage, cxLookAndFeelPainters,
cxLookAndFeels, cxHyperLinkEdit, cxImageComboBox, cxDBLookupComboBox,
cxMemo, cxGridTableView, cxGridBandedTableView, cxBlobEdit, cxImage,
cxCurrencyEdit;
type
TUnboundDesignDefinedDemoMainForm = class(TForm)
mmMain: TMainMenu;
miAbout: TMenuItem;
miFile: TMenuItem;
miExit: TMenuItem;
sbMain: TStatusBar;
lbDescrip: TLabel;
LookAndFeelController: TcxLookAndFeelController;
lvCars: TcxGridLevel;
cxGrid: TcxGrid;
bvCars: TcxGridBandedTableView;
clnCar: TcxGridBandedColumn;
clnPrice: TcxGridBandedColumn;
clnPicture: TcxGridBandedColumn;
clnHP: TcxGridBandedColumn;
clnLiter: TcxGridBandedColumn;
clnCyl: TcxGridBandedColumn;
clnTransmissSpeedCount: TcxGridBandedColumn;
clnTransmissAutomatic: TcxGridBandedColumn;
clnHyperlink: TcxGridBandedColumn;
cxStyleRepository1: TcxStyleRepository;
styCar: TcxStyle;
clnTradeMark: TcxGridBandedColumn;
styGroup: TcxStyle;
procedure miAboutClick(Sender: TObject);
procedure miExitClick(Sender: TObject);
end;
var
UnboundDesignDefinedDemoMainForm: TUnboundDesignDefinedDemoMainForm;
implementation
{$R *.dfm}
uses
Dialogs, AboutDemoForm;
procedure TUnboundDesignDefinedDemoMainForm.miAboutClick(Sender: TObject);
begin
ShowAboutDemoForm;
end;
procedure TUnboundDesignDefinedDemoMainForm.miExitClick(Sender: TObject);
begin
Close;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?