mirror of
https://gitee.com/akwkevin/aistudio.-wpf.-diagram
synced 2026-04-12 20:26:35 +08:00
项目结构调整
This commit is contained in:
16
Others/Dragablz/DragablzDemo/TreeNode.cs
Normal file
16
Others/Dragablz/DragablzDemo/TreeNode.cs
Normal file
@@ -0,0 +1,16 @@
|
||||
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; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user