如何使用视觉样式绘制 3D 边框?

发布于 2024-07-13 21:10:11 字数 142 浏览 5 评论 0原文

我可以使用 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 技术交流群。

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

发布评论

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

评论(2

洛阳烟雨空心柳 2024-07-20 21:10:11

听起来您可能需要查看 System. Windows.Forms.VisualStyles.VisualStyleRenderer

System.Windows.Forms.VisualStyles
命名空间公开 VisualStyleElement
代表所有的对象
控件和用户界面 (UI)
视觉支持的元素
风格。 绘制或获取信息
关于特定元素,您必须
VisualStyleRenderer 设置为
您感兴趣的元素。

要绘制元素,请使用
DrawBackground 方法。 这
还有 VisualStyleRenderer
包括方法,例如 GetColor
GetEnumValue,提供信息
关于元素是如何定义的
当前的视觉风格。

该页面上也有一个代码示例。

您必须自己绘制边框,但您可以从 VisualStyleElement.Window.Caption.Active 获取颜色,并且大小应该是窗口框架的大小(我相信),即 VisualStyleElement.Window.FrameBottom.Active。 如果您探索 VisualStyleElement.Window,您应该能够确定哪个窗口元素具有绘制边框所需的信息。

Sounds like you might need to look at System.Windows.Forms.VisualStyles.VisualStyleRenderer:

The System.Windows.Forms.VisualStyles
namespace exposes VisualStyleElement
objects that represent all of the
controls and user interface (UI)
elements that are supported by visual
styles. To draw or get information
about a particular element, you must
set a VisualStyleRenderer to the
element you are interested in.

To draw an element, use the
DrawBackground method. The
VisualStyleRenderer class also
includes methods, such as GetColor and
GetEnumValue, that provide information
about how an element is defined by the
current visual style.

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 is VisualStyleElement.Window.FrameBottom.Active. If you explore the VisualStyleElement.Window, you should be able to determine which window element has the information you need to draw your border.

瀟灑尐姊 2024-07-20 21:10:11

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.

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