Revert "Merge commit 'f1aae48a2b80f96ae94b59a69addd6cc6e48ee14'"

This reverts commit 1f49d0936e, reversing
changes made to 236eeac038.
This commit is contained in:
Dario Sassi
2025-03-21 19:21:02 +01:00
parent 1f49d0936e
commit 00a338c202
120 changed files with 6714 additions and 5977 deletions
@@ -1,4 +1,9 @@
Public Class SaveFileDialogWithListV
Imports System.ComponentModel
Imports System.IO
Imports EgtUILib
Public Class SaveFileDialogWithListV
'Implements INotifyPropertyChanged
Private m_SaveFileDialogWithListVM As SaveFileDialogWithListVM
@@ -30,4 +35,26 @@
Return MyBase.ShowDialog()
End Function
End Class
'Private Sub FilePath_TextChanged(sender As Object, e As TextChangedEventArgs) Handles FilePath.TextChanged
' FileNameList.UnselectAll()
'End Sub
End Class
'''' <summary>
'''' Class that represent a Converter that convert the complete file path in the file name and vice versa.
'''' </summary>
'Public Class FileNameConverter
' Implements IValueConverter
' Dim TempPath As String
' Public Function Convert(value As Object, targetType As Type, parameter As Object, culture As System.Globalization.CultureInfo) As Object Implements IValueConverter.Convert
' TempPath = CStr(value)
' Return Path.GetFileNameWithoutExtension(TempPath)
' End Function
' Public Function ConvertBack(value As Object, targetType As Type, parameter As Object, culture As System.Globalization.CultureInfo) As Object Implements IValueConverter.ConvertBack
' Return Path.GetDirectoryName(TempPath) & "\" & CStr(value) & Path.GetExtension(TempPath)
' End Function
'End Class