如何在 MFC 对话框中制作虚线分隔符?
有没有任何地方对此进行控制?或者使用另一个控件使其看起来像分隔符的方法?
谢谢
Is there a control for this anywhere? Or a way to use another control to make it look like a separator?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要使用图像控件并将颜色属性更改为“蚀刻”。调整控件的大小,使其看起来像单行。
You want to use the image control and change the color property to 'Etched'. Resize the control so it just looks like single line.
覆盖对话框的 OnPaint 函数并让它绘制线条。通常,对话框的 OnPaint 不会执行任何操作,因为所有内容都位于自行绘制的控件中。
Override the OnPaint function of your dialog and have it draw the line. Ordinarily the OnPaint for a dialog doesn't do anything, as all the content is in controls which paint themselves.