从 System.Drawing.Brushes 获取名称和类型的配对列表

发布于 2024-11-04 11:15:06 字数 374 浏览 0 评论 0原文

我想创建一个 BrushInfo 列表,其中包含 System.Drawing.Brushes 中的画笔名称及其类型的属性。类似于:

Dim brushList = GetType(Drawing.Brushes) _
                   .GetProperties.Select(Function(p) New BrushInfo With 
                        {.BrushName = p.Name, .BrushValue = GetType(p)})

上面的代码将获取画笔的名称(p.Name),但不会获取画笔的类型(即System.Drawing.Brushes.AliceBlue)。如何获取画笔类型?

I want to create a list of BrushInfo which has properties of a brush name and its type from System.Drawing.Brushes. Something like:

Dim brushList = GetType(Drawing.Brushes) _
                   .GetProperties.Select(Function(p) New BrushInfo With 
                        {.BrushName = p.Name, .BrushValue = GetType(p)})

The code above will get me the name of the brush (p.Name) but will not get me the type of the brush (i.e. System.Drawing.Brushes.AliceBlue). How do I get the brush type?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

柠北森屋 2024-11-11 11:15:06

您想要获取属性的值,而不是属性的类型。代替:

.BrushValue = GetType(p)

使用:

.BrushValue = CType(p.GetValue(Nothing, Nothing), Brush)

You want to get the value of the property, not the type of the property. Instead of:

.BrushValue = GetType(p)

use:

.BrushValue = CType(p.GetValue(Nothing, Nothing), Brush)
也只是曾经 2024-11-11 11:15:06

Brush 类型为 BrushBrush 的名称只是因为它是 Brushes 中该名称的属性。除了 Brush 之外,Brush 本身没有其他类型或名称。

The Brush type is Brush. The name of the Brush is only by virtue of it being a property of that name in Brushes. The Brush itself has no further type or name beyond Brush.

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