如何使表单仅位于应用程序的最顶层?
我正在制作 Excel 插件,其中单击菜单项或工具栏按钮,打开表单。我已将窗体的最顶层设置为 true,但它仍然是 Windows XP 的所有应用程序的最顶层。我只需要保持 Microsoft Excel 的最高位置即可。
我选择了 Visual Studio 2008 中的项目,Excel -> 2003 中的项目。
请告诉我如何以任何方式做到这一点......
I am making excel add-in in which clicking on menu item or toolbar button, Form opened. I have set form's topmost to true but it remain topmost to all applications of windows xp. I just need to remain topmost to Microsoft Excel only.
I have choosed project in Visual Studio 2008, in Excel ->2003.
Please tell me how to do that with any way ........
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将表单的所有者设置为 Microsoft Excel 窗口。在 Windows 中,始终显示拥有的窗口高于他们的主人。对话框和 Excel 中的搜索框等内容都是自有窗口,这使得它们显示在其所有者上方。
有几种方法可以设置表单的父级:
这确实需要您知道 Excel 应用程序窗口句柄。
You can set your Form's owner to be the Microsoft Excel window. In Windows owned windows are always displayed above their owner. Dialogs and things like the search box in Excel are owned windows, which is what keeps them displayed above their owner.
There are a couple of ways you can set a Form's parent:
This does require you to know the Excel applications window handle.
[编辑-更改的代码]
[Edit - changed code]