Files
icarus/Icarus/ShowValueSlider/ShowValueSlider.xaml.vb
T
Emmanuele Sassi 4132e8684d - Introdotto calcolo separato dei solidi
- Spostati file CurrMachining
- Introdotto slider custom
- Introdotti flag di modifica separati per slice ed operazioni successive
- Gestito calcolo  dei solidi separato dal resto
- Gestito bottone from import su reference
- Aggiornato logo
- Migliorata gestione dell'interazione con la scena nelle modifiche grafiche( rib, start mach, ...)
- Introdotta gestione grid da oggetto
- Gestiti percorsi chiusi e con cap end in ShellNumber
2022-09-29 09:57:11 +02:00

27 lines
904 B
VB.net

Public Class ShowValueSlider
Public Shared ReadOnly ShowValueProperty As DependencyProperty = DependencyProperty.Register("ShowValue", GetType(String), GetType(ShowValueSlider), New FrameworkPropertyMetadata(""))
Public Shadows Property ShowValue As String
Get
Return CStr(MyBase.GetValue(ShowValueProperty))
End Get
Set(value As String)
MyBase.SetValue(ShowValueProperty, value)
End Set
End Property
Public Shared ReadOnly ShowMaximumProperty As DependencyProperty = DependencyProperty.Register("ShowMaximum", GetType(String), GetType(ShowValueSlider), New FrameworkPropertyMetadata(""))
Public Shadows Property ShowMaximum As String
Get
Return CStr(MyBase.GetValue(ShowMaximumProperty))
End Get
Set(value As String)
MyBase.SetValue(ShowMaximumProperty, value)
End Set
End Property
End Class