EgtCAM5 :

- corretta notifica combobox su selezione alla costruzione (per controller).
This commit is contained in:
Dario Sassi
2016-07-16 16:56:45 +00:00
parent d2605949d2
commit 2f610bd968
@@ -134,11 +134,9 @@ Namespace EgtCAM5
Return m_ComboSelectedIndex
End Get
Set(value As Integer)
If value <> m_ComboSelectedIndex Then
Application.Msn.NotifyColleagues(Application.SETLASTINTEGER, value)
m_ComboSelectedIndex = value
OnPropertyChanged("ComboSelectedIndex")
End If
Application.Msn.NotifyColleagues(Application.SETLASTINTEGER, value)
m_ComboSelectedIndex = value
OnPropertyChanged("ComboSelectedIndex")
End Set
End Property