ItemCheckedEventArgs.cs 681 B

12345678910111213141516171819202122
  1. 
  2. using System.Windows.Forms;
  3. namespace Dongke.WinForm.Controls
  4. {
  5. /// <summary>
  6. /// 为 CklCheckedListBox 控件的 ItemChecked 事件提供数据
  7. /// </summary>
  8. public class ItemCheckedEventArgs : ItemCheckEventArgs
  9. {
  10. /// <summary>
  11. /// 为 CklCheckedListBox 控件的 ItemChecked 事件提供数据
  12. /// </summary>
  13. /// <param name="index"></param>
  14. /// <param name="newCheckValue"></param>
  15. /// <param name="currentValue"></param>
  16. public ItemCheckedEventArgs(int index, CheckState newCheckValue, CheckState currentValue)
  17. : base(index, newCheckValue, currentValue)
  18. {
  19. }
  20. }
  21. }