koshy
New member
I had created a extended textbox component inherited from System.Windows.Forms.TextBox with custom properties as shown below..
I would like to add my custom properties in control's tasks
as shown above.
where i have to add the xml comment / attribute for the same,any one please help me..
as shown above.
where i have to add the xml comment / attribute for the same,any one please help me..
VB.NET:
''' <summary>Set or Get controls mandatory status</summary>
<System.ComponentModel.Category("Features")> _
<System.ComponentModel.EditorBrowsable(System.ComponentModel.EditorBrowsableState.Always)> _
<System.ComponentModel.Description("Set or Get controls mandatory status")> _
PublicProperty MandatoryField() AsBoolean
[INDENT]Get[/INDENT][INDENT]Return _mMandatoryField[/INDENT][INDENT]EndGet[/INDENT][INDENT]Set(ByVal Value AsBoolean)[/INDENT][INDENT]_mMandatoryField = Value[/INDENT][INDENT]EndSet[/INDENT]EndProperty
Last edited: