-pulizia codice

This commit is contained in:
Demetrio Cassarino
2024-07-10 16:15:10 +02:00
parent 9513538764
commit c6e7ddbf59
84 changed files with 440 additions and 1964 deletions
@@ -78,7 +78,7 @@ Public Class SaveFileDialogWithListVM
EgtMsg(MSG_EGTSAVEFILEDIALOG + 7),
MessageBoxButton.OK, MessageBoxImage.Error)
End If
NotifyPropertyChanged("WriteFileName")
NotifyPropertyChanged(NameOf(WriteFileName))
End Set
End Property
@@ -116,7 +116,7 @@ Public Class SaveFileDialogWithListVM
End Get
Set(value As List(Of String))
m_FileList = value
NotifyPropertyChanged("FileList")
NotifyPropertyChanged(NameOf(FileList))
End Set
End Property
@@ -127,11 +127,11 @@ Public Class SaveFileDialogWithListVM
End Get
Set(value As String)
m_SelectedFile = value
NotifyPropertyChanged("SelectedFile")
NotifyPropertyChanged(NameOf(SelectedFile))
If Not IsNothing(m_SelectedFile) Then
m_WriteFileName = Path.GetFileNameWithoutExtension(SelectedFile)
NotifyPropertyChanged("WriteFileName")
NotifyPropertyChanged(NameOf(WriteFileName))
End If
End Set
End Property