class 属性 在 属性 网格中显示名称

class property displayed name in propertygrid

如何设置 属性 在 属性 网格中的显示名称?

Public Property WeldOrientation As Double

WeldOrientation 格式不正确,两个词之间需要一个 space。如何设置 属性 的显示名称?

谢谢。

您可以使用 DisplayName 属性:

<DisplayName("Weld Orientation")>
Public Property WeldOrientation As Double

您可能需要添加对 System.ComponentModel 的引用才能使用它。