Common: ObjectPropertyDialog

This commit is contained in:
Jonathan Jenne
2022-03-11 15:46:59 +01:00
parent a6de7e0af2
commit 7f9fd6ee58
36 changed files with 785 additions and 326 deletions

View File

@@ -1810,7 +1810,7 @@ Namespace EDMIServiceReference
Private ObjectIdField As Long
<System.Runtime.Serialization.OptionalFieldAttribute()> _
Private WhoField As Long
Private WhoField As String
<Global.System.ComponentModel.BrowsableAttribute(false)> _
Public Property ExtensionData() As System.Runtime.Serialization.ExtensionDataObject Implements System.Runtime.Serialization.IExtensibleDataObject.ExtensionData
@@ -1875,12 +1875,12 @@ Namespace EDMIServiceReference
End Property
<System.Runtime.Serialization.DataMemberAttribute()> _
Public Property Who() As Long
Public Property Who() As String
Get
Return Me.WhoField
End Get
Set
If (Me.WhoField.Equals(value) <> true) Then
If (Object.ReferenceEquals(Me.WhoField, value) <> true) Then
Me.WhoField = value
Me.RaisePropertyChanged("Who")
End If