u_attrform.pas
来自「很好地delphi书籍源码」· PAS 代码 · 共 37 行
PAS
37 行
unit U_AttrForm;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
StdCtrls, ExtCtrls;
type
TAttrForm = class(TForm)
Bevel1: TBevel;
FileDirName: TLabel;
FilePathName: TLabel;
Label1: TLabel;
Label2: TLabel;
OKBtn: TButton;
GroupBox1: TGroupBox;
ReadOnly: TCheckBox;
Archive: TCheckBox;
System: TCheckBox;
Hidden: TCheckBox;
Button1: TButton;
private
{ Private declarations }
public
{ Public declarations }
end;
var
AttrForm: TAttrForm;
implementation
{$R *.DFM}
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?