- migliorata la gestione degli UC per le trasformazioni.
This commit is contained in:
@@ -204,15 +204,15 @@ Public Class _TextBoxParam
|
||||
Public Event TextChanged(sender As Object, text As String)
|
||||
#Region "FIELDS & PROPERTIES"
|
||||
|
||||
Private m_Value As String = String.Empty
|
||||
Public Property Value As String
|
||||
Private m_sValue As String = String.Empty
|
||||
Public Property sValue As String
|
||||
Get
|
||||
Return m_Value
|
||||
Return m_sValue
|
||||
End Get
|
||||
Set(value As String)
|
||||
m_Value = value
|
||||
RaiseEvent TextChanged(Me, m_Value)
|
||||
NotifyPropertyChanged(NameOf(value))
|
||||
m_sValue = value
|
||||
RaiseEvent TextChanged(Me, m_sValue)
|
||||
NotifyPropertyChanged(NameOf(sValue))
|
||||
End Set
|
||||
End Property
|
||||
|
||||
@@ -222,7 +222,7 @@ Public Class _TextBoxParam
|
||||
|
||||
Sub New(sName As String, sValue As String, Optional nVisibility As Visibility = Visibility.Visible, Optional bIsEnabled As Boolean = True)
|
||||
MyBase.New(sName, nVisibility, bIsEnabled)
|
||||
m_Value = sValue
|
||||
m_sValue = sValue
|
||||
End Sub
|
||||
|
||||
#End Region ' Constructor
|
||||
|
||||
Reference in New Issue
Block a user