如何去除窗口客户区的边框?

发布于 2024-07-11 14:21:00 字数 122 浏览 9 评论 0原文

我不希望看到窗口客户区的边框。 有什么方法可以去除它们吗? 该窗口是SDI(单文档)窗口。

我还注意到边框仅出现在客户区域的顶部和左侧(右侧和底部没有)。 我很困惑。

非常感谢!

I don't want the border of a window's client area to be seen. Is there any way to remove them? The window is a SDI(Single Document) window.

I also noticed that the border appeares only on the top and left side of the client area (no on the right and bottom). I was very confused.

Thank you very much!

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

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

发布评论

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

评论(1

烟雨凡馨 2024-07-18 14:21:00

这样的东西对你的情况有用吗?

BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
    cs.style = WS_POPUP | WS_VISIBLE;  // or others you want
    cs.dwExStyle = 0;  // or others you want

    return CFrameWnd::PreCreateWindow(cs);
}

这涉及按顺序重载 CWnd::PreCreateWindow修改 CREATESTRUCT ,它定义了窗口的初始化参数。

dwExStyle 指扩展样式。

Would something like this be useful in your case ?

BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs)
{
    cs.style = WS_POPUP | WS_VISIBLE;  // or others you want
    cs.dwExStyle = 0;  // or others you want

    return CFrameWnd::PreCreateWindow(cs);
}

That involves overloading CWnd::PreCreateWindow in order to modify CREATESTRUCT which defines initialization parameters for a windows.

dwExStyle refers to the extended styles.

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