moel@345: using System; moel@345: using System.Collections.Generic; moel@345: using System.Text; moel@345: moel@345: namespace Aga.Controls.Tree moel@345: { moel@345: public class TreePathEventArgs : EventArgs moel@345: { moel@345: private TreePath _path; moel@345: public TreePath Path moel@345: { moel@345: get { return _path; } moel@345: } moel@345: moel@345: public TreePathEventArgs() moel@345: { moel@345: _path = new TreePath(); moel@345: } moel@345: moel@345: public TreePathEventArgs(TreePath path) moel@345: { moel@345: if (path == null) moel@345: throw new ArgumentNullException(); moel@345: moel@345: _path = path; moel@345: } moel@345: } moel@345: }