G
Guest
I have implemented DashStyle and LineThickness for custom circle control as
follows:
Public Property DashStyle() As DashStyle
Get
Return m_DashStyle
End Get
Set(ByVal Value As DashStyle)
m_DashStyle = Value
End Set
End Property
<DefaultValue(1)> _
Public Property LineThickness() As Integer
Get
Return m_intLineThickness
End Get
Set(ByVal Value As Integer)
m_intLineThickness = Value
End Set
End Property
Now how can I make changes to these property take effect at design and run
time.
At design time any changes to these two property doesn’t take effect. The
circle remains same at design time.
follows:
Public Property DashStyle() As DashStyle
Get
Return m_DashStyle
End Get
Set(ByVal Value As DashStyle)
m_DashStyle = Value
End Set
End Property
<DefaultValue(1)> _
Public Property LineThickness() As Integer
Get
Return m_intLineThickness
End Get
Set(ByVal Value As Integer)
m_intLineThickness = Value
End Set
End Property
Now how can I make changes to these property take effect at design and run
time.
At design time any changes to these two property doesn’t take effect. The
circle remains same at design time.