Пример #1
0
 public FlxValueTreeViewItem(FlxValue value, int depth = 0, FlxValueTreeViewItem parent = null, string key = "", FlxQuery query = null)
 {
     FlxValue = value;
     _depth   = depth;
     _parent  = parent;
     _key     = key;
     _query   = query;
 }
Пример #2
0
 internal void SetQuery(FlxQuery query)
 {
     _query = query;
     Reload();
 }