码迷,mamicode.com
首页 > 其他好文 > 详细

DELPHI XE5 跨平台 Form ShowModal 官方示例

时间:2014-08-06 01:19:51      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:os   for   ar   line   res   ad   text   on   

Calling ShowModal as an Anonymous Method on All Platforms



procedure THeaderFooterForm.btnPickClick(Sender: TObject); var dlg: TForm1; begin dlg := TForm1.Create(nil); // select current value, if available in the list dlg.ListBox1.ItemIndex := dlg.ListBox1.Items.IndexOf(edit1.Text);   dlg.ShowModal(procedure(ModalResult: TModalResult) begin if ModalResult = mrOK then // if OK was pressed and an item is selected, pick it if dlg.ListBox1.ItemIndex >= 0 then edit1.Text := dlg.ListBox1.Items [dlg.ListBox1.ItemIndex]; dlg.DisposeOf; end);   end;

DELPHI XE5 跨平台 Form ShowModal 官方示例,布布扣,bubuko.com

DELPHI XE5 跨平台 Form ShowModal 官方示例

标签:os   for   ar   line   res   ad   text   on   

原文地址:http://www.cnblogs.com/happyhills/p/3893320.html

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