19 March 2014

UnCheck All Checked List Box in C#.net

UnCheck All Checked List Box in C#.net
public static void UnCheckedAllChecks(CheckedListBox chkLstBox) { foreach (int i in chkLstBox.CheckedIndices) { chkLstBox.SetItemCheckState(i, CheckState.Unchecked); } }

No comments: