如何使用视觉样式绘制 3D 边框?
我可以使用 ControlPaint.DrawBorder3D 绘制 3D 边框,但我得到的是“Windows 经典”3D 边框。 我想绘制当前主题的 3D 边框 - 在默认 XP 主题中,这是一个 1px 的蓝色或灰色边框。 我该如何绘制它,以及如何获得它的宽度?
I can draw a 3D border using ControlPaint.DrawBorder3D, but I get the 'Windows Classic' 3D border. I want to draw the current theme's 3D border - in the default XP theme, this is a 1px blue or gray border. How do I draw that, and how do I get its widths?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
听起来您可能需要查看 System. Windows.Forms.VisualStyles.VisualStyleRenderer:
该页面上也有一个代码示例。
您必须自己绘制边框,但您可以从 VisualStyleElement.Window.Caption.Active 获取颜色,并且大小应该是窗口框架的大小(我相信),即
VisualStyleElement.Window.FrameBottom.Active
。 如果您探索VisualStyleElement.Window
,您应该能够确定哪个窗口元素具有绘制边框所需的信息。Sounds like you might need to look at System.Windows.Forms.VisualStyles.VisualStyleRenderer:
There's a code sample on that page as well.
You will have to draw the border yourself, but you can get the color from
VisualStyleElement.Window.Caption.Active
and the size should be the size of the window frame (I believe), which isVisualStyleElement.Window.FrameBottom.Active
. If you explore theVisualStyleElement.Window
, you should be able to determine which window element has the information you need to draw your border.Pre .NET Framework 2.0 答案
我假设您正在绘制自己的特殊控件,并且希望使用当前活动主题的元素来绘制它,以便它更好地适合标准 XP 控件。 例如,您不尝试在标准 Button 控件上启用主题。 正确的?
其实有点复杂。 您的主要关注点应该是 UxTheme.dll。 这里包含绘制主题控件所需的一切。 这里是这个 dll 的一个很好的 C# 包装器,可以让您的生活更轻松。 还有其他的,所以如果这不完全是您想要的,我希望我已经为您指明了正确的方向。
Pre .NET Framework 2.0 Answer
I'm assuming that you are drawing your own, special control and you want to use elements of the currently active theme to draw it so it better fits with standard XP controls. You're NOT trying to, for example, enable theming on a standard Button control. Correct?
It's actually somewhat complicated. Your main focus should be UxTheme.dll. This houses everything you need for drawing themed controls. Here is a nice C# wrapper around this dll to make your life easier. There are others so if this isn't exactly what you wanted, I hope I've pointed you in the right direction.