1234567891011121314151617181920212223242526 |
- namespace System.Windows.Forms
- {
- public class LabelEditEventArgs : EventArgs
- {
- public string Label { get; }
- public int Item { get; }
- public bool CancelEdit { get; set; }
- public LabelEditEventArgs(int item)
- {
- Item = item;
- Label = null;
- }
- public LabelEditEventArgs(int item, string label)
- {
- Item = item;
- Label = label;
- }
- }
- public delegate void LabelEditEventHandler(object sender, LabelEditEventArgs e);
- }
|