moel@345: using System; moel@345: using System.Collections.Generic; moel@345: using System.Text; moel@345: moel@345: namespace Aga.Controls.Tree.NodeControls moel@345: { moel@345: public class LabelEventArgs : EventArgs moel@345: { moel@345: private object _subject; moel@345: public object Subject moel@345: { moel@345: get { return _subject; } moel@345: } moel@345: moel@345: private string _oldLabel; moel@345: public string OldLabel moel@345: { moel@345: get { return _oldLabel; } moel@345: } moel@345: moel@345: private string _newLabel; moel@345: public string NewLabel moel@345: { moel@345: get { return _newLabel; } moel@345: } moel@345: moel@345: public LabelEventArgs(object subject, string oldLabel, string newLabel) moel@345: { moel@345: _subject = subject; moel@345: _oldLabel = oldLabel; moel@345: _newLabel = newLabel; moel@345: } moel@345: } moel@345: }