【VB.NET】自定义控件(一)属性说明
Bindable 布尔型,为true时表示VS.NET将在数据绑定对话框中显示该控件
Browsable 布尔型,表示该控件是否在设计视图中显示?
Category 当Properties按类别排序时,决定控件所属的种类。
DefaultValue 缺省值。
Description 在Properties面板中的描述框中显示的文本内容。
<
Browsable(
true
), _
'
是否在Panel中可见
Category( " Miscellaneous " ), _ ' 所属类别
DefaultValue(defaultText),_ ' 默认值
WebPartStorage(Storage.Personal), _ ' 枚举Storage.Shared,Storage.Personal,Storage.None
FriendlyName( " Text " ), _ ' 显示在Panel中的名称
Description( " WebPart1 " ) > ' 描述
Category( " Miscellaneous " ), _ ' 所属类别
DefaultValue(defaultText),_ ' 默认值
WebPartStorage(Storage.Personal), _ ' 枚举Storage.Shared,Storage.Personal,Storage.None
FriendlyName( " Text " ), _ ' 显示在Panel中的名称
Description( " WebPart1 " ) > ' 描述
建立自己的属性类
Imports
System
< AttributeUsage(AttributeTargets.All) > _
Public Class HelpAttribute
Inherits System.Attribute
Public Url As String
Private topic As String
Public Sub New ( ByVal url As String )
MyBase .New
Me .Url = url
End Sub
Public Property Topic As String
Get
Return topic
End Get
Set
topic = value
End Set
End Property
End Class
< AttributeUsage(AttributeTargets.All) > _
Public Class HelpAttribute
Inherits System.Attribute
Public Url As String
Private topic As String
Public Sub New ( ByVal url As String )
MyBase .New
Me .Url = url
End Sub
Public Property Topic As String
Get
Return topic
End Get
Set
topic = value
End Set
End Property
End Class
Serializable 如果对象标记为 Serializable,则该对象将被自动序列化,并从一个应用程序域传输至另一个应用程序域,然后进行反序列化,从而在第二个应用程序域中产生出该对象的一个精确副本。此过程通常称为按值封送。
Editor 指定用来更改属性的编辑器。 MSDN
Designer 指定用于为组件实现设计时服务的类。 MSDN
LicenseProvider 提供 abstract 基类以便实现许可证提供程序 . MSDN
ToolboxItem 表示工具箱项的属性。 MSDN
DefautEvent 指定默认事件
DefaultProperty 指定默认属性