I'm having trouble understanding or figuring out how to wire up property change notifcation and validation with the CheckComboBox control.
With a regular ComboBox, a definition like this produces proper validation events:
Any assistance would be greatly appreciated.
With a regular ComboBox, a definition like this produces proper validation events:
ComboBox x:Name="cboResults"
ItemsSource="{Binding Path=AllowedValues}"
SelectedValue="{Binding Path=AOEResultValue, Mode=TwoWay, UpdateSourceTrigger=LostFocus, ValidatesOnDataErrors=True, NotifyOnValidationError=True}"
DisplayMemberPath="ResultText"
SelectedValuePath="ResultValue" />
However, with the CheckComboBox, it's a bit different and I'm not sure where to take it. Below is one of my definitions, but I'm not sure how I would wire it up.Any assistance would be greatly appreciated.
<xctk:CheckComboBox x:Name="cboResults"
ItemsSource="{Binding Path=AllowedValues}"
DisplayMemberPath="ResultText"
ValueMemberPath="ResultValue"
SelectedMemberPath="IsSelected"/>