ItemCheckEventArgs.cs 541 B

123456789101112131415161718192021
  1. namespace System.Windows.Forms
  2. {
  3. public class ItemCheckEventArgs : EventArgs
  4. {
  5. public int Index { get; }
  6. public CheckState NewValue { get; set; }
  7. public CheckState CurrentValue { get; }
  8. public ItemCheckEventArgs(int index, CheckState newCheckValue, CheckState currentValue)
  9. {
  10. Index = index;
  11. NewValue = newCheckValue;
  12. CurrentValue = currentValue;
  13. }
  14. }
  15. public delegate void ItemCheckEventHandler(object sender, ItemCheckEventArgs e);
  16. }