Files
EgtWPFLib5/MachGroupPanel/MachGroupPanelV.xaml.vb
Emmanuele Sassi f325ea4bdf EgtWpfLib :
- Agiunti pannelli, StatusBar e scena generici per uso comune.
- Miglioramenti vari.
2017-11-25 17:01:25 +00:00

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