隐藏窗口边框,如果我知道该窗口的句柄

发布于 2024-11-03 02:57:34 字数 249 浏览 2 评论 0原文

我已经有 OLE 嵌入对象 Excel 图表。而且,当我创建这个对象时,当我调整窗口大小时,我在项目中遇到了一些问题。使用 Spy++ 我看到两个进程:Excel 7 和 Excel 9。Excel 9 在右侧部分包含“垃圾”,当我调整窗口大小时,我可以看到未定义的行为。 在下图中,您可以看到我想隐藏的边框。 在此处输入图像描述

如果我知道窗口句柄,如何隐藏此边框?

I have already OLE Embedded object Excel Chart. And, when I create this object, i have some problem in project, when I'm resizing window. Using Spy++ I see two process: Excel 7 and Excel 9. Excel 9 contain "trash" in right part, and when I resizing window I can see undefined behaviour.
On the following picture you can see a border, which I want to hide.
enter image description here

How I can hide this border, if I known handle of window?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

你怎么敢 2024-11-10 02:57:34

您可以尝试使用 SetWindowLong() ,但不知道效果是不是你想要的。

SetWindowLong(win_handle, GWL_STYLE, GetWindowLong(win_handle, GWL_EXSTYLE) | WS_EX_TOPMOST);
ShowWindow(win_handle, SW_SHOW);

You might try using SetWindowLong(), but I don't know if the effect is going to be what you are looking for.

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