iwunit1.pas
来自「Delphi 应用举例」· PAS 代码 · 共 30 行
PAS
30 行
unit IWUnit1;
{PUBDIST}
interface
uses
IWAppForm, IWApplication, IWTypes, IWCompCheckbox, Classes, Controls,
IWControl, IWCompButton, IWCompMemo;
type
TformMain = class(TIWAppForm)
IWButton1: TIWButton;
IWCheckBox1: TIWCheckBox;
IWMemo1: TIWMemo;
procedure IWButton1Click(Sender: TObject);
public
end;
implementation
{$R *.dfm}
uses
ServerController;
procedure TformMain.IWButton1Click(Sender: TObject);
begin
webapplication.ShowMessage('服务器端事件onclick');
end;
end.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?