0

名前、サイズ、単位、太字などの他のプロパティを持つフォントなどのプロパティを持つクラスを実行したいのですが、解決策を試しましたが、機能しません(http://stackoverflow.com / questions / 755391 / group-properties-in-a-custom-control)誰でもお手伝いできますか?どんな助けでもありがたいです。

<TypeConverter(GetType(ExpandableObjectConverter))> _
Class TestingClass
'Some property here
End Class 
4

1 に答える 1

0
Public Class Font
    Public Property Name As String
    Public Property Unit As Integer
    Public Property Bold As Boolean
End Class

Public Class TestingClass
    Public Property TestFont As New Font()
End Class
于 2012-04-10T21:21:48.610 に答える