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);
}
}
{
foreach (int i in chkLstBox.CheckedIndices)
{
chkLstBox.SetItemCheckState(i, CheckState.Unchecked);
}
}