I'm currently using the RadDiagram with MVVM. Inside my SerializableGraphSourceBase I have the overridden SerializeNode. When Saving the xml of my diagram this works as expected for all my basic properties such as
I'm wondering if there is a way to do this for a property that is a list or collection
Any help would be greatly appreciated.
public string Header { get; set; }
I'm wondering if there is a way to do this for a property that is a list or collection
public ObservableCollection<
DiagramNodeProperty
> DiagramNodeProperties { get; set; }
Any help would be greatly appreciated.