| 12345678910111213141516171819202122 |
-
- using System.Windows.Forms;
- namespace Dongke.WinForm.Controls
- {
- /// <summary>
- /// 为 CklCheckedListBox 控件的 ItemChecked 事件提供数据
- /// </summary>
- public class ItemCheckedEventArgs : ItemCheckEventArgs
- {
- /// <summary>
- /// 为 CklCheckedListBox 控件的 ItemChecked 事件提供数据
- /// </summary>
- /// <param name="index"></param>
- /// <param name="newCheckValue"></param>
- /// <param name="currentValue"></param>
- public ItemCheckedEventArgs(int index, CheckState newCheckValue, CheckState currentValue)
- : base(index, newCheckValue, currentValue)
- {
- }
- }
- }
|