protected virtual void OnDropNodeValidating(Point point, ref TreeNodeAdv node)
 {
     if (DropNodeValidating != null)
     {
         DropNodeValidatingEventArgs args = new DropNodeValidatingEventArgs(point, node);
         DropNodeValidating(this, args);
         node = args.Node;
     }
 }
Exemple #2
0
		protected virtual void OnDropNodeValidating(Point point, ref TreeNodeAdv node)
		{
			if (DropNodeValidating != null)
			{
				DropNodeValidatingEventArgs args = new DropNodeValidatingEventArgs(point, node);
				DropNodeValidating(this, args);
				node = args.Node;
			}
		}