With this property, you can define diagram elements from XAML code.
Namespace: MindFusion.Diagramming.Wpf
Assembly: MindFusion.Diagramming.Wpf
SyntaxC#
Copy Code
|
|---|
public IList Content { get; } |
Visual Basic
Copy Code
|
|---|
Public ReadOnly Property Content As IList |
An instance of the ContentCollection class.
RemarksDo not use this property directly.
ExampleThe objects created by the XAML parser are added to the Content property. You can use that to define diagram items in XAML:
XAML
Copy Code
|
|---|
<d:Diagram Name="diagram" xmlns:d="http://mindfusion.eu/diagramming/wpf"> |
See Also