I have a user control which publishes the following property. VS2005
[code=vbnet]
<DefaultValue(G etType(System.B oolean), "True"), DesignerSeriali zationVisibilit y(DesignerSeria lizationVisibil ity.Content)> _
Public Property Required() As Boolean
Get
Return _Required
End Get
Set(ByVal value As Boolean)
_Required = value
Chk_Required(Me , New System.EventArg s)
End Set
End Property
[/code]
However I am having trouble with the property changes in design mode persisting to runtime. Am I missing something?
[code=vbnet]
<DefaultValue(G etType(System.B oolean), "True"), DesignerSeriali zationVisibilit y(DesignerSeria lizationVisibil ity.Content)> _
Public Property Required() As Boolean
Get
Return _Required
End Get
Set(ByVal value As Boolean)
_Required = value
Chk_Required(Me , New System.EventArg s)
End Set
End Property
[/code]
However I am having trouble with the property changes in design mode persisting to runtime. Am I missing something?