f325ea4bdf
- Agiunti pannelli, StatusBar e scena generici per uso comune. - Miglioramenti vari.
26 lines
1.1 KiB
VB.net
26 lines
1.1 KiB
VB.net
Public Class EgtMachGroupPanelV
|
|
|
|
' Proprietà che permette di impostare lo stile dei RepeatButton(bottoni per scorrere la lista)
|
|
Public Shared ReadOnly RepaetButtonStyleProperty As DependencyProperty = DependencyProperty.Register("RepaetButtonStyle", GetType(Style), GetType(EgtMachGroupPanelV), New PropertyMetadata(Nothing))
|
|
Public Property RepaetButtonStyle() As Style
|
|
Get
|
|
Return DirectCast(GetValue(RepaetButtonStyleProperty), Style)
|
|
End Get
|
|
Set(ByVal value As Style)
|
|
SetValue(RepaetButtonStyleProperty, value)
|
|
End Set
|
|
End Property
|
|
|
|
' Proprietà che permette di impostare lo stile dei RadioButton che rappresentano i gruppi
|
|
Public Shared ReadOnly MachGroupButtonStyleProperty As DependencyProperty = DependencyProperty.Register("MachGroupButtonStyle", GetType(Style), GetType(EgtMachGroupPanelV))
|
|
Public Property MachGroupButtonStyle() As Style
|
|
Get
|
|
Return DirectCast(GetValue(MachGroupButtonStyleProperty), Style)
|
|
End Get
|
|
Set(ByVal value As Style)
|
|
SetValue(MachGroupButtonStyleProperty, value)
|
|
End Set
|
|
End Property
|
|
|
|
End Class
|