ustatduty.~pas

来自「delphi数据库的程序代码」· ~PAS 代码 · 共 30 行

~PAS
30
字号
unit UStatDuty;

interface

uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls, 
  Buttons, ExtCtrls, ComCtrls;

type
  TDlgStatDuty = class(TForm)
    OKBtn: TButton;
    CancelBtn: TButton;
    DTPickerEnd: TDateTimePicker;
    Label3: TLabel;
    DTPickerStart: TDateTimePicker;
    Label2: TLabel;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  DlgStatDuty: TDlgStatDuty;

implementation

{$R *.dfm}

end.

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?