Files
EgtCAM5/Base/TabViewModel.vb
Emmanuele Sassi 6dd2abf95d EgtCAM5 :
- Altri nomi modificati.
- Eliminato namespace.
2018-04-11 10:43:14 +00:00

17 lines
397 B
VB.net

Public Class TabViewModel
Inherits ViewModelBase
Friend m_sTabName As String
Public Overridable Property sTabName As String
Get
Return m_sTabName
End Get
Set(value As String)
If value <> m_sTabName Then
m_sTabName = value
OnPropertyChanged("sTabName")
End If
End Set
End Property
End Class