首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > .NET > VB Dotnet >

请教组件属性说明如何写

2011-12-13 
请问组件属性说明怎么写?请问属性的说明怎么写?例如public Property Timeout as LongGet...End GetSet(val

请问组件属性说明怎么写?
请问属性的说明怎么写?例如
public Property Timeout as Long
  Get
  ...
  End Get
  Set(value as Long)
  ...
  End Set
EndProperty 
写完这段后,想在VB的属性页上选中这个属性进行设置时,可以在下面的说明框上显示信息"链接超时时间设置值"

[解决办法]
使用DescriptionAttribute

<Description("链接超时时间设置值"), Category("Appearance")> _
public Property Timeout as Long

热点排行