Hi,
In WPF, C# application, I have 4 checkboxes, 1. select all 2. team 3. personal 4. subteam. Asusual, if choose option 1, it selects all the checkboxes and when it is unchecked it unchecks all.. this is working fine for me..
But when I click select all (all will be checked,....) and if I uncheck any of the other 3, then selectall should be unchecked..
public void AllChartsSelected()
{
if (_view.SelectAllChartsCheckBox)
{
boolSelectAll = true;
_view.TeamCheckBox = true;
_view.PersonalCheckBox = true;
_view.SubTeamCheckBox = true;
}
else
{
boolSelectAll = false;
_view.TeamCheckBox = false;
_view.PersonalCheckBox = false;
_view.SubTeamCheckBox = false;
}
}
after this, I couldn't get it right for the unchecking of a checkbox should uncheck the select all checkbox too...
Please help. Thanks Ramm