34c4d1e644
- corretto errore in visualizzazione posizione cursore - modificati colori griglia TFSEditor - cambiata grafica slider - migliorati stati bottoni
26 lines
965 B
VB.net
26 lines
965 B
VB.net
Public Class CheckedImageRadioButton
|
|
|
|
Public Shared ReadOnly ImageSourceProperty As DependencyProperty = DependencyProperty.Register("ImageSource", GetType(String), GetType(CheckedImageRadioButton), New FrameworkPropertyMetadata(""))
|
|
|
|
Public Shadows Property ImageSource As String
|
|
Get
|
|
Return CStr(MyBase.GetValue(ImageSourceProperty))
|
|
End Get
|
|
Set(value As String)
|
|
MyBase.SetValue(ImageSourceProperty, value)
|
|
End Set
|
|
End Property
|
|
|
|
Public Shared ReadOnly CheckedImageSourceProperty As DependencyProperty = DependencyProperty.Register("CheckedImageSource", GetType(String), GetType(CheckedImageRadioButton), New FrameworkPropertyMetadata(""))
|
|
|
|
Public Shadows Property CheckedImageSource As String
|
|
Get
|
|
Return CStr(MyBase.GetValue(CheckedImageSourceProperty))
|
|
End Get
|
|
Set(value As String)
|
|
MyBase.SetValue(ImageSourceProperty, value)
|
|
End Set
|
|
End Property
|
|
|
|
End Class
|