unit1.pas.~1~
来自「Delphi 2005程序设计教程_实例源文件和教学课件」· ~1~ 代码 · 共 40 行
~1~
40 行
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, System.ComponentModel, Borland.Vcl.StdCtrls;
type
TForm3 = class(TForm)
Button1: TButton;
Button2: TButton;
procedure Button2Click(Sender: TObject);
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form3: TForm3;
implementation
{$R *.nfm}
procedure show1 ;stdcall external 'useForm.dll';
procedure show2 ;stdcall external 'useForm.dll';
procedure TForm3.Button1Click(Sender: TObject);
begin
show1;
end;
procedure TForm3.Button2Click(Sender: TObject);
begin
show2;
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?