using System; using System.Collections.Generic; using System.ComponentModel; using System.Text; using CPF; namespace ConsoleApp1 { public class NodeData : CPF.CpfObject { public NodeData() { Nodes = new Collection(); Nodes.CollectionChanged += Nodes_CollectionChanged; } private void Nodes_CollectionChanged(object sender, CollectionChangedEventArgs e) { if (e.Action == CollectionChangedAction.Add || e.Action == CollectionChangedAction.Replace) { e.NewItem.Parent = this; } } public string Text { get => GetValue(); set => SetValue(value); } public Collection Nodes { get { return GetValue>(); } set { SetValue(value); } } public bool IsChecked { get { return GetValue(); } set { SetValue(value); } } public NodeData Parent { get; set; } } public class TestData : INotifyPropertyChanged { public string Category { get; set; } private float _number = 0; public float Number { get { return _number; } set { _number = value; if (PropertyChanged != null) { this.PropertyChanged(this, new PropertyChangedEventArgs("Number")); } } } public event PropertyChangedEventHandler PropertyChanged; } }