I have a question regarding ComboBox binding.
I have a comboBox, filled with some values, and I want to filter this comboBox, only to show values that satisfy value of checkBox.
For example: I have a checkBox named Male. And when I checked it, I want to display in comboBox only objects which Gender is Male.
Is this possible?
Bind your ComboBox to a collection, say an observable collection and two way binding of the check box to a bool.
When you click on check box your bool property will be notified. Based on that filter your collection. The combo box will now have filtered items.