4132e8684d
- 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
27 lines
904 B
VB.net
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
|