制作 TFindDialog 和 TReplaceDialog 模态框?
我在我的应用程序中使用一些 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于单窗口应用程序的简单情况,我可能会尝试这样的方法:
也就是说,第一个方法是按钮的单击处理程序。第二个是 FindDialog.OnClose 事件处理程序。
对于更复杂的情况,我可能会查看
TCustomForm.ShowModal
的源代码。For the simple case of a single-window application I might try something like this:
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
.