制作 TFindDialog 和 TReplaceDialog 模态框?

发布于 2024-11-08 01:06:22 字数 125 浏览 0 评论 0原文

我在我的应用程序中使用一些 TFindDialog 和 TReplace 对话框。

如何以模式方式显示对话框,就像“打开”和“保存”对话框一样?当“查找和替换”对话框打开时,我不希望任何用户能够选择应用程序中的任何控件。

I am using some TFindDialog and TReplace Dialogs in my Application.

How can I show the Dialogs Modally, like the Open and Save Dialogs do? I dont want any user to be able to select any controls in the Application when the Find and Replace Dialog is open.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小梨窩很甜 2024-11-15 01:06:22

对于单窗口应用程序的简单情况,我可能会尝试这样的方法:

procedure TYourForm.FindButtonClick(Sender: TObject);
begin
  Self.Enabled := False;
  FindDialog.Execute;
end;
...
procedure TYourForm.FindDialogClose(Sender: TObject);
begin
  Self.Enabled := True;
end;

也就是说,第一个方法是按钮的单击处理程序。第二个是 FindDialog.OnClose 事件处理程序。

对于更复杂的情况,我可能会查看 TCustomForm.ShowModal 的源代码。

For the simple case of a single-window application I might try something like this:

procedure TYourForm.FindButtonClick(Sender: TObject);
begin
  Self.Enabled := False;
  FindDialog.Execute;
end;
...
procedure TYourForm.FindDialogClose(Sender: TObject);
begin
  Self.Enabled := True;
end;

That is, the first method is the click handler of a button. The second one is the FindDialog.OnClose event handler.

For a more complex case I would probably have a look at the source code of TCustomForm.ShowModal.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文