EgtCAM5 :

- Migliorie varie.
This commit is contained in:
Emmanuele Sassi
2016-07-09 19:17:02 +00:00
parent a10b8d2ec6
commit 4db56e7e09
25 changed files with 510 additions and 44 deletions
+6 -3
View File
@@ -3,13 +3,16 @@
Public Class TabViewModel
Inherits ViewModelBase
Private m_sTabName As String
Public Property sTabName As String
Friend m_sTabName As String
Public Overridable Property sTabName As String
Get
Return m_sTabName
End Get
Set(value As String)
m_sTabName = value
If value <> m_sTabName Then
m_sTabName = value
OnPropertyChanged("sTabName")
End If
End Set
End Property