📄 frmproperty.pas
字号:
unit frmProperty;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, Buttons, ComCtrls, CheckLst;
type
TForm3 = class(TForm)
PageControl1: TPageControl;
BitBtn1: TBitBtn;
BitBtn2: TBitBtn;
TabSheet1: TTabSheet;
TabSheet2: TTabSheet;
CheckBox1: TCheckBox;
Label1: TLabel;
Edit1: TEdit;
Label2: TLabel;
CheckListBox1: TCheckListBox;
procedure BitBtn2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form3: TForm3;
implementation
{$R *.dfm}
procedure TForm3.BitBtn2Click(Sender: TObject);
begin
Form3.Visible := False ;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -