其他分享
首页 > 其他分享> > 事件自调用 - 回复 maxcool 的问题

事件自调用 - 回复 maxcool 的问题

作者:互联网

事件自调用 - 回复 maxcool 的问题

unit Unit1;

interface

uses
  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  Dialogs, StdCtrls;

type
  TForm1 = class(TForm)
    Button1: TButton;
    Edit1: TEdit;
    procedure Button1Click(Sender: TObject);
  end;

var
  Form1: TForm1;

implementation

{$R *.dfm}

procedure TForm1.Button1Click(Sender: TObject);
begin
  Edit1.Text := IntToStr(StrToIntDef(Edit1.Text, 0) + 1);

  if StrToIntDef(Edit1.Text, 0) < 10 then
    Button1.Click;

  {这样也可以:}
//  if StrToIntDef(Edit1.Text, 0) < 10 then
//    Button1Click(nil);
end;

end.
posted on 2008-03-31 16:48  万一  阅读(2054)  评论(8)  编辑  收藏

标签:调用,end,Button1Click,Text,TForm1,Edit1,回复,StrToIntDef,maxcool
来源: https://blog.51cto.com/u_14617575/2747628