private void myTreeView_AfterCheck(object sender, TreeViewEventArgs e)
{
if (trvCheckLock)
{
return;
}
trvCheckLock = true;
trvMessageType.BeginUpdate();
try
{
TreeNode item = e.Node;
//If the user checks/unchecks the node that has children,
if (item.Nodes.Count > 0)
{
//All children are unchecked as well
foreach (TreeNode child in item.Nodes)
{
child.Checked = item.Checked;
UpdateObjectModel(item.Text, child.Text, child.Checked);
}
}
//Otherwise (if the item has a parent)
if (item.Parent != null)
{
//The parent node should be checked only when all its children
//are checked too
if (!item.Checked)
{
item.Parent.Checked = false;
}
else
{
bool allChecked = true;
foreach (TreeNode sibling in item.Parent.Nodes)
{
if (!(allChecked = allChecked && sibling.Checked))
{
break;
}
}
item.Parent.Checked = allChecked;
}
}
//Update the list of the selected items to the right
if (item.Parent != null)
UpdateSelected(item);
}
finally
{
trvMessageType.EndUpdate();
trvCheckLock = false;
}
}
Experts Exchange always has the answer, or at the least points me in the correct direction! It is like having another employee that is extremely experienced.
When asked, what has been your best career decision?
Deciding to stick with EE.
Being involved with EE helped me to grow personally and professionally.
Connect with Certified Experts to gain insight and support on specific technology challenges including:
We've partnered with two important charities to provide clean water and computer science education to those who need it most. READ MORE