I am creating WPF elements dynamically in code behind, and for each of the rows in the Grid I’m building it consists of a CheckBox and a Dynamic number of TextBoxes. The interaction that is needed is the following:
- If all
TextBoxesin a row have a value of0, set theCheckBox
IsCheckedproperty totrueand Disable it. - If one of the
TextBoxesis then changed from0, enable the
CheckBoxand setIsCheckedtofalse. - If the user clicks on the
CheckBox, set all associatedTextBoxes
to0and Disable theCheckBox
I was able to accomplish the first part of the last one using this code:
Binding setScoreToZeroIfIsNormalChecked = new Binding("IsChecked");
setScoreToZeroIfIsNormalChecked.Source = this.NormalCheckBoxControl;
setScoreToZeroIfIsNormalChecked.Converter = m_NormalCheckBoxJointScoresConverter;
tempJointScoreControl.JointScoreContainer.SetBinding(ContainerBase.SingleAnswerProperty, setScoreToZeroIfIsNormalChecked);
and the converter:
public object Convert(object value, System.Type targetType, object parameter, System.Globalization.CultureInfo culture)
{
if (value is bool && targetType == typeof(Answer))
{
if ((bool)value)
{
Answer answer = new Answer();
answer.Value = "0";
answer.DisplayValue = "0";
return answer;
}
else
return null;
}
else
{
return null;
}
}
However, in attempting to create another converter to accomplish other functionality, I was running into issues of converters stepping on one another since all functionality is based around the CheckBox.IsChecked property.
Is there anyway to accomplish all of the above using one or two multibinding converters? I’d really like to avoid having to create a whole bunch of events and maintaining them in order to do this.
It’s relatively easy. Everything should resolve around CheckBox IsChecked property.
For a simple reason, it’s a two-way property. So either you can modify it, or CheckBox can modify it.
So what you do, you use MultiBinding, as such:
And in your multiBindingConverter, you will have object[] value as first parameter, which you need to convert into IList and iterate over it && do your calculations, if you should either return true/false.(IsChecked=true or false)
Now bind CheckBox IsEnabled to CheckBox IsChecked property, and use BooleanInverterConverter. (If CheckBox is checked, it should be disabled, and vice versa)
The last step is to make TextBoxes listen to actual IsChecked property of CheckBox.
If it is TRUE, they all should show value of 0, otherwise they can show what they want.
So, make a new MultiBinding.
the idea in textboxMultiBindingConverter is to either return Text(value[1]) if value[0]==FALSE or “0” if value[0]==TRUE.