warn.pas

来自「用于开发税务票据管理的软件」· PAS 代码 · 共 30 行

PAS
30
字号
unit Warn;

interface

uses Classes, Forms, Buttons,
  StdCtrls, ExtCtrls, Controls;

type
  TdlgWarning = class(TForm)
    btnOK: TBitBtn;
    btnCancel: TBitBtn;
    Bevel1: TBevel;
    lblWarningCaption: TLabel;
    lblDescription: TLabel;
    chkWarn: TCheckBox;
  private
    { Private declarations }
  public
    { Public declarations }
  end;

var
  dlgWarning: TdlgWarning;

implementation

{$R *.DFM}

end.

⌨️ 快捷键说明

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