37 lines
800 B
ObjectPascal
37 lines
800 B
ObjectPascal
|
|
unit FramePagingSel;
|
||
|
|
|
||
|
|
interface
|
||
|
|
|
||
|
|
uses
|
||
|
|
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants,
|
||
|
|
System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, cxGraphics,
|
||
|
|
cxControls, cxLookAndFeels, cxLookAndFeelPainters, cxContainer, cxEdit,
|
||
|
|
Vcl.ComCtrls, dxCore, cxDateUtils,
|
||
|
|
cxTextEdit, cxMaskEdit, cxDropDownEdit, cxCalendar, Vcl.StdCtrls,
|
||
|
|
Vcl.Menus, cxButtons, Vcl.ExtCtrls, DateUtils, dxSkinsCore,
|
||
|
|
dxSkinsDefaultPainters, dxSkinWXI;
|
||
|
|
|
||
|
|
type
|
||
|
|
TfrmFramePagingSel = class(TFrame)
|
||
|
|
lbl1: TLabel;
|
||
|
|
BTLP: TcxButton;
|
||
|
|
cxButton3: TcxButton;
|
||
|
|
TCBNOR: TcxComboBox;
|
||
|
|
LBDQY: TLabel;
|
||
|
|
Label2: TLabel;
|
||
|
|
LBZYS: TLabel;
|
||
|
|
Label3: TLabel;
|
||
|
|
private
|
||
|
|
{ Private declarations }
|
||
|
|
public
|
||
|
|
{ Public declarations }
|
||
|
|
end;
|
||
|
|
|
||
|
|
implementation
|
||
|
|
|
||
|
|
|
||
|
|
{$R *.dfm}
|
||
|
|
|
||
|
|
end.
|
||
|
|
|