嵌入式 Adob​​e Acrobat PDF 抢夺焦点

发布于 2024-07-25 15:49:27 字数 302 浏览 3 评论 0原文

我通过继承 AxHost 并将 Acrobat guid("ca8a9780-280d-11cf-a24d-444553540000") 传递给基本构造函数,将 Adob​​e 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 技术交流群。

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

发布评论

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

评论(1

熟人话多 2024-08-01 15:49:27

尝试下面的片段......

        this.Refresh();
        axAcroPDF1.Focus();
        axAcroPDF1.SendToBack();

        **AnyControl**.Focus();
        this.Refresh();

Try the below snippet.......

        this.Refresh();
        axAcroPDF1.Focus();
        axAcroPDF1.SendToBack();

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