moel@345: using System;
moel@345: using System.Collections.Generic;
moel@345: using System.Text;
moel@345: using System.Windows.Forms;
moel@345: 
moel@345: namespace Aga.Controls.Tree.NodeControls
moel@345: {
moel@345: 	public class EditEventArgs : NodeEventArgs
moel@345: 	{
moel@345: 		private Control _control;
moel@345: 		public Control Control
moel@345: 		{
moel@345: 			get { return _control; }
moel@345: 		}
moel@345: 
moel@345: 		public EditEventArgs(TreeNodeAdv node, Control control)
moel@345: 			: base(node)
moel@345: 		{
moel@345: 			_control = control;
moel@345: 		}
moel@345: 	}
moel@345: }