打印对话框焦点问题
我在桌面应用程序中使用 PrintDialog。当从按钮或上下文菜单调用它时,它工作正常。但是,当我单击用于调用 PrintDialog 的工具提示按钮时,尽管 printdialog 窗口处于活动状态,但我没有将焦点放在打印按钮上。我需要点击两次才能打印。
我得到的解决方案是使用 BeginInvoke 和委托来调用异步,现在我可以通过以下代码获得焦点。
ShowThePrintDialog printD = new ShowThePrintDialog(p.ShowDialog); this.BeginInvoke(printD);
我想捕获 DialogResult 并根据在 printdialog 上单击的按钮进一步继续。
有人可以告诉我如何在使用 BeginInvoke 时捕获 DialogResult 吗?
拉曼
I am using PrintDialog in my desktop application. When it is invoked from Button or from context menu it works fine. But when I click the tooltip button for invoking the PrintDialog, despite the printdialog window is active, I am not getting the focus on the print button. I need to click twice to get the print.
The solution I got is to use BeginInvoke with delegate to call async and now I am able to get the focus with the following code.
ShowThePrintDialog printD = new ShowThePrintDialog(p.ShowDialog);
this.BeginInvoke(printD);
I want to capture the DialogResult and proceed further based on the button clicked on printdialog.
Can anybody give me an idea how to capture the DialogResult while using BeginInvoke?
Raman
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
PrintDialog 没有获得焦点,因为toolstripbuttons Click 事件未完成。
这可以通过使用定时器来解决:
The PrintDialog doesn't get the focus, because the toolstripbuttons Click-event doesn't finish.
This can be solved by using a timer: