Exemplo n.º 1
0
		// Constructor.
		public TreeViewExCancelEventArgs
					(TreeNodeEx node, bool cancel, TreeViewExAction action)
			: base(cancel)
		{
			this.node = node;
			this.action = action;
		}
Exemplo n.º 2
0
 // Constructor.
 public TreeViewExCancelEventArgs(TreeNodeEx node, bool cancel, TreeViewExAction action)
     : base(cancel)
 {
     this.node = node;
     this.action = action;
 }
Exemplo n.º 3
0
		public TreeViewExEventArgs(TreeNodeEx node)
		{
			this.node = node;
			this.action = TreeViewExAction.Unknown;
		}
Exemplo n.º 4
0
		// Constructor.
		public TreeViewExEventArgs(TreeNodeEx node, TreeViewExAction action)
		{
			this.node = node;
			this.action = action;
		}
Exemplo n.º 5
0
 public TreeViewExEventArgs(TreeNodeEx node)
 {
     this.node = node;
     this.action = TreeViewExAction.Unknown;
 }
Exemplo n.º 6
0
 // Constructor.
 public TreeViewExEventArgs(TreeNodeEx node, TreeViewExAction action)
 {
     this.node = node;
     this.action = action;
 }