如何去除窗口客户区的边框?
我不希望看到窗口客户区的边框。 有什么方法可以去除它们吗? 该窗口是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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这样的东西对你的情况有用吗?
这涉及按顺序重载 CWnd::PreCreateWindow修改 CREATESTRUCT ,它定义了窗口的初始化参数。
dwExStyle 指扩展样式。
Would something like this be useful in your case ?
That involves overloading CWnd::PreCreateWindow in order to modify CREATESTRUCT which defines initialization parameters for a windows.
dwExStyle refers to the extended styles.