UI 추가 및 데이타셋 추가
This commit is contained in:
+26
-3
@@ -4,10 +4,33 @@ interface
|
||||
|
||||
uses
|
||||
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
|
||||
Vcl.Controls, Vcl.Forms, Vcl.Dialogs;
|
||||
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, cxGraphics, dxUIAClasses, cxControls,
|
||||
cxLookAndFeels, cxLookAndFeelPainters, dxSkinsCore, dxSkinWXI,
|
||||
dxLayoutControlAdapters, dxLayoutContainer, Vcl.Menus, cxStyles, cxCustomData,
|
||||
cxFilter, cxData, cxDataStorage, cxEdit, cxNavigator, dxDateRanges,
|
||||
dxScrollbarAnnotations, Data.DB, cxDBData, cxGridLevel, cxClasses,
|
||||
cxGridCustomView, cxGridCustomTableView, cxGridTableView, cxGridDBTableView,
|
||||
cxGrid, Vcl.StdCtrls, cxButtons, dxLayoutControl;
|
||||
|
||||
type
|
||||
TForm1 = class(TForm)
|
||||
TfrmMain = class(TForm)
|
||||
lgRoot: TdxLayoutGroup;
|
||||
lcMain: TdxLayoutControl;
|
||||
lgToolbar: TdxLayoutGroup;
|
||||
lgInput: TdxLayoutGroup;
|
||||
lgGrid: TdxLayoutGroup;
|
||||
btnAdd: TcxButton;
|
||||
liAdd: TdxLayoutItem;
|
||||
btnSave: TcxButton;
|
||||
liSave: TdxLayoutItem;
|
||||
btnDelete: TcxButton;
|
||||
liDelete: TdxLayoutItem;
|
||||
btnCancel: TcxButton;
|
||||
liCancel: TdxLayoutItem;
|
||||
dbtvEmployee: TcxGridDBTableView;
|
||||
grdEmployeeLevel1: TcxGridLevel;
|
||||
grdEmployee: TcxGrid;
|
||||
liGrid: TdxLayoutItem;
|
||||
private
|
||||
{ Private declarations }
|
||||
public
|
||||
@@ -15,7 +38,7 @@ type
|
||||
end;
|
||||
|
||||
var
|
||||
Form1: TForm1;
|
||||
frmMain: TfrmMain;
|
||||
|
||||
implementation
|
||||
|
||||
|
||||
Reference in New Issue
Block a user