Delphi返回showmodal的自定义结果

时间:2012-08-29 11:31:09

标签: delphi-7 vcl delphi

我有一个带有2个按钮的表单(1是mrOK - 1是mrCancel)。 只要单击其中一个按钮,表单就会关闭(OnClose被调用),无论如何。

我想返回自定义值。像这样:

procedure OpenForm;
var
 MyForm : TMyForm;
begin
 MyForm := TMyForm.Create (NIL);
 try 
  if MyForm.ShowModal = 1337 then begin
   // [...]
  end;
 finally
  MyForm.Free
 end;
end;

模态表格:

 procedure TMyForm.Button1Click(Sender: TObject); // mrOK
 begin
  if Edit1.Text = '' then abort; // Don't close here?!
 end;

 procedure TExecutePrompt.FormClose(Sender: TObject;
 var Action: TCloseAction);
 begin
  if Edit1.Text = '' then abort; // Works but if the user clicks the X it should return mrCancel
 end;

希望你明白我想做什么。 它是一个带编辑控件的提示窗口。如果控件中没有文本,则表单应该保留,直到输入文本为止(除非单击X)。

感谢您的帮助。

1 个答案:

答案 0 :(得分:13)

要关闭具有某个特定模态结果值的模态窗口,只需指定

即可
ModalResult := MyVal; // This will close this modal window
                      // and the modal result will be MyVal

也就是说,确保Button1ModalResult = mrNone,然后您可以执行以下操作:

procedure TMyForm.Button1Click(Sender: TObject); // mrOK
begin
  if Edit1.Text <> '' then ModalResult := 1337;
end;

如果编辑框不为空,这将关闭表单,模态结果将为1337