从所有者绘制的列表框中删除边框
我通过派生 CListBox 制作了一个所有者绘制的列表框,但我不希望它有边框。相反,边框将绘制在父对话框的背景中,因此我的列表框看起来像具有自定义边框。如何去除边框?我的派生类中是否有要重写的标志或函数?
I've made an owner-drawn listbox by deriving CListBox, but I don't want it to have a border. Instead the border will be painted in the background of the parent dialog, so my listbox will look like it has a custom border. How can I remove the border? Is there a flag or a function to override in my derived class?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要删除
WS_BORDER
窗口样式。You need to remove the
WS_BORDER
window style.