VirtualLinkData
StockSharp.Xaml.Diagram.GXDiagram.PartManager
The value of Data for those Links that are bound to data in a model that does not support separate link data.
Implements: INotifyPropertyChanged
Properties
From
public object From { get; private set; }
value = virtualLinkData.From
virtualLinkData.From = value
Gets the data object for the "from" end of this link relationship.
To
public object To { get; private set; }
value = virtualLinkData.To
virtualLinkData.To = value
Gets the data object for the "to" end of this link relationship.
Methods
Equals
public override bool Equals(object obj)
result = virtualLinkData.Equals(obj)
Two VirtualLinkData objects are effectively the same if the From and To data objects are equal.
- obj
GetHashCode
public override int GetHashCode()
result = virtualLinkData.GetHashCode()
This is just the combination of the hash codes for the From and To data objects.
ToString
public override string ToString()
result = virtualLinkData.ToString()
This is might be useful for debugging.
Events
PropertyChanged
public event PropertyChangedEventHandler PropertyChanged
virtualLinkData.PropertyChanged += handler
This implementation of INotifyPropertyChanged does nothing.