码迷,mamicode.com
首页 > Windows程序 > 详细

firemonkey打开子窗体(匿名回调函数)

时间:2016-06-29 17:20:31      阅读:377      评论:0      收藏:0      [点我收藏+]

标签:

procedure TForm1.Button1Click(Sender: TObject);
var
ChildForm: TForm2;
begin
ChildForm := TForm2.Create(nil);
ChildForm.ShowModal(
procedure(ModalResult: TModalResult)
begin
if ModalResult = mrOK then
begin
// 要做的动作
end;
end);
end;

 

子窗体如何释放

procedure TForm2.FormClose(Sender: TObject; var Action: TCloseAction);
begin
Action := TCloseAction.caFree;
end;

 

http://www.cnblogs.com/hnxxcxg/p/5518877.html

firemonkey打开子窗体(匿名回调函数)

标签:

原文地址:http://www.cnblogs.com/findumars/p/5627556.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!