📄 unbounddesigndefineddemomain.pas
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -