📄 spzldwform.~pas
字号:
unit spzldwform;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, Grids, DBGrids, ComCtrls, StdCtrls, Buttons;
type
Tspzl_dw_form = class(TForm)
GroupBox1: TGroupBox;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
SpeedButton1: TSpeedButton;
SpeedButton2: TSpeedButton;
SpeedButton3: TSpeedButton;
ComboBox1: TComboBox;
ComboBox2: TComboBox;
Edit1: TEdit;
StatusBar1: TStatusBar;
DBGrid1: TDBGrid;
procedure SpeedButton3Click(Sender: TObject);
procedure SpeedButton2Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
spzl_dw_form: Tspzl_dw_form;
implementation
uses jldwform;
{$R *.dfm}
procedure Tspzl_dw_form.SpeedButton3Click(Sender: TObject);
begin
close;
end;
procedure Tspzl_dw_form.SpeedButton2Click(Sender: TObject);
begin
jldw_form:=tjldw_form.create(application);
jldw_form.show;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -