fattrdlg.pas
来自「DELPHI7编程百例 DELPHI7编程百例 DELPHI7编程百例」· PAS 代码 · 共 35 行
PAS
35 行
unit FAttrDlg;
interface
uses Windows, SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
Buttons, ExtCtrls;
type
TFileAttrForm = class(TForm)
OKBtn: TButton;
CancelBtn: TButton;
Bevel1: TBevel;
FileDirName: TLabel;
FilePathName: TLabel;
ChangeDate: TLabel;
GroupBox1: TGroupBox;
ReadOnly: TCheckBox;
Archive: TCheckBox;
System: TCheckBox;
Hidden: TCheckBox;
private
{ Private declarations }
public
{ Public declarations }
end;
var
FileAttrForm: TFileAttrForm;
implementation
{$R *.dfm}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?