-pulizia codice

-focus oer slider da sistemare
-aggiunto selezione layer in scena che visualizza il layer nell'albero da controllare
This commit is contained in:
Demetrio Cassarino
2024-07-05 17:11:01 +02:00
parent 6cbe8c0683
commit 2ec5866c4a
44 changed files with 484 additions and 693 deletions
@@ -1,9 +1,9 @@
<UserControl x:Class="InputExpanderV"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Expander Header="{Binding Title}" IsExpanded="{Binding IsExpanded}" IsEnabled="{Binding IsEnabled}"
Style="{StaticResource ExpanderStyle}">
Style="{StaticResource ExpanderStyle}">
<StackPanel>
<StackPanel.Style>
<Style TargetType="{x:Type StackPanel}">
@@ -33,9 +33,9 @@
<ColumnDefinition Width="1*"/>
</Grid.ColumnDefinitions>
<Button Command="{Binding ShowCommand}" Visibility="{Binding ShowBtnVisibility}"
Content="{Binding ShowMsg}" Style="{StaticResource EgtCAM5_InputButton}"/>
Content="{Binding ShowMsg}" Style="{StaticResource EgtCAM5_InputButton}"/>
<Button Command="{Binding DoneCommand}" Grid.Column="1"
Content="{Binding OkMsg}" Style="{StaticResource EgtCAM5_InputButton}"/>
Content="{Binding OkMsg}" Style="{StaticResource EgtCAM5_InputButton}"/>
</Grid>
</StackPanel>
</Expander>
@@ -14,7 +14,7 @@ Public Class InputExpanderVM
End Get
Set(value As Boolean)
m_IsExpanded = value
OnPropertyChanged("IsExpanded")
OnPropertyChanged(NameOf(IsExpanded))
End Set
End Property
@@ -25,7 +25,7 @@ Public Class InputExpanderVM
End Get
Set(value As Boolean)
m_IsEnabled = value
OnPropertyChanged("IsEnabled")
OnPropertyChanged(NameOf(IsEnabled))
End Set
End Property
@@ -36,7 +36,7 @@ Public Class InputExpanderVM
End Get
Set(value As String)
m_Title = value
OnPropertyChanged("Title")
OnPropertyChanged(NameOf(Title))
End Set
End Property
@@ -48,7 +48,7 @@ Public Class InputExpanderVM
End Get
Set(value As String)
m_TextBlock = value
OnPropertyChanged("TextBlock")
OnPropertyChanged(NameOf(TextBlock))
End Set
End Property
@@ -61,7 +61,7 @@ Public Class InputExpanderVM
Set(value As String)
m_TextBox = value
Map.refProjectVM.NotifyInputText(value)
OnPropertyChanged("TextBox")
OnPropertyChanged(NameOf(TextBox))
End Set
End Property
@@ -73,7 +73,7 @@ Public Class InputExpanderVM
Set(value As Visibility)
If value <> m_TextVisibility Then
m_TextVisibility = value
OnPropertyChanged("TextVisibility")
OnPropertyChanged(NameOf(TextVisibility))
End If
End Set
End Property
@@ -85,7 +85,7 @@ Public Class InputExpanderVM
End Get
Set(value As Boolean)
m_FocusTextBox = value
OnPropertyChanged("FocusTextBox")
OnPropertyChanged(NameOf(FocusTextBox))
End Set
End Property
@@ -97,7 +97,7 @@ Public Class InputExpanderVM
End Get
Set(value As String)
m_CheckBoxText = value
OnPropertyChanged("CheckBoxText")
OnPropertyChanged(NameOf(CheckBoxText))
End Set
End Property
@@ -110,7 +110,7 @@ Public Class InputExpanderVM
If value <> m_IsChecked Then
Map.refProjectVM.SetLastBoolean(value)
m_IsChecked = value
OnPropertyChanged("IsChecked")
OnPropertyChanged(NameOf(IsChecked))
End If
End Set
End Property
@@ -123,7 +123,7 @@ Public Class InputExpanderVM
Set(value As Visibility)
If value <> m_CheckVisibility Then
m_CheckVisibility = value
OnPropertyChanged("CheckVisibility")
OnPropertyChanged(NameOf(CheckVisibility))
End If
End Set
End Property
@@ -136,7 +136,7 @@ Public Class InputExpanderVM
End Get
Set(value As ObservableCollection(Of String))
m_ComboItemsList = value
OnPropertyChanged("ComboItemsList")
OnPropertyChanged(NameOf(ComboItemsList))
End Set
End Property
@@ -148,7 +148,7 @@ Public Class InputExpanderVM
Set(value As Integer)
Map.refProjectVM.SetLastInteger(value)
m_ComboSelectedIndex = value
OnPropertyChanged("ComboSelectedIndex")
OnPropertyChanged(NameOf(ComboSelectedIndex))
End Set
End Property
@@ -160,7 +160,7 @@ Public Class InputExpanderVM
Set(value As Visibility)
If value <> m_ComboVisibility Then
m_ComboVisibility = value
OnPropertyChanged("ComboVisibility")
OnPropertyChanged(NameOf(ComboVisibility))
End If
End Set
End Property
@@ -173,7 +173,7 @@ Public Class InputExpanderVM
End Get
Set(value As Visibility)
m_ShowBtnVisibility = value
OnPropertyChanged("ShowBtnVisibility")
OnPropertyChanged(NameOf(ShowBtnVisibility))
End Set
End Property