-modifiche grafiche finestre

This commit is contained in:
Demetrio Cassarino
2024-11-29 09:45:03 +01:00
parent caf0a0ea3a
commit 971628a549
6 changed files with 56 additions and 25 deletions
@@ -77,4 +77,17 @@ Public Class OnlyProdNewOpenProjectFileDialogV
'm_OpenProjFileDialogVM.SetIsEditNameActive(False)
End Sub
Public Shared ReadOnly IsSelectedProperty As DependencyProperty = DependencyProperty.Register("IsSelected",
GetType(Boolean),
GetType(ItemsControl))
Public Property IsSelected As Boolean
Get
Return DirectCast(GetValue(IsSelectedProperty), Boolean)
End Get
Set(value As Boolean)
SetValue(IsSelectedProperty, value)
End Set
End Property
End Class