public ResizeColumnState(SETreeViewGrid tree, TreeColumn column, Point p)
     : base(tree)
 {
     _column       = column;
     _initLocation = p;
     _initWidth    = column.Width;
 }
Esempio n. 2
0
 internal TreeNodeAdv(SETreeViewGrid tree, object tag)
 {
     _row      = -1;
     _tree     = tree;
     _nodes    = new Collection <TreeNodeAdv>();
     _children = new ReadOnlyCollection <TreeNodeAdv>(_nodes);
     _tag      = tag;
 }
Esempio n. 3
0
 public InputState(SETreeViewGrid tree)
 {
     _tree = tree;
 }
 public InputWithControl(SETreeViewGrid tree) : base(tree)
 {
 }
 public InputWithShift(SETreeViewGrid tree) : base(tree)
 {
 }
 public TreeColumnCollection(SETreeViewGrid treeView)
 {
     _treeView = treeView;
 }
 public NormalInputState(SETreeViewGrid tree) : base(tree)
 {
 }