Files
aistudio-wpf-diagram/Dragablz/DragablzDemo/TreeNode.cs
2021-07-23 09:42:22 +08:00

16 lines
368 B
C#

using System.Collections.ObjectModel;
namespace DragablzDemo
{
public class TreeNode
{
private readonly ObservableCollection<TreeNode> _children = new ObservableCollection<TreeNode>();
public object Content { get; set; }
public ObservableCollection<TreeNode> Children
{
get { return _children; }
}
}
}