嵌入式 Adobe Acrobat PDF 抢夺焦点
我通过继承 AxHost 并将 Acrobat guid("ca8a9780-280d-11cf-a24d-444553540000")
传递给基本构造函数,将 Adobe Acrobat 嵌入到我们的 C# 程序中。 要加载 pdf,我调用 InvokeMember("LoadFile")
。 我遇到的问题是在调用“LoadFile”并加载 PDF 后,Acrobat 将焦点放在我们的表单中。 Acrobat 显然开始在另一个线程上加载,对先前具有焦点的控件调用焦点,并不能解决问题。 那么有人知道如何防止这种情况发生吗?
I am embedding Adobe Acrobat in our c# program by inheriting AxHost and passing in the Acrobat guid("ca8a9780-280d-11cf-a24d-444553540000")
to the base constructor. To load a pdf I call InvokeMember("LoadFile")
. The problem I am running into is after calling "LoadFile" and the PDF loads, Acrobat takes the focus in our form. Being Acrobat apparently starts loading on another thread, calling focus on the control that previously had focus, doesn't fix the problem. So does anyone have any idea of how I can prevent this from occurring?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试下面的片段......
Try the below snippet.......