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