Hello,
I'm interested in creating combo boxes that represent many-to-many relationship. That is if one combobox changes selection that would trigger the other combobox to change content, and vice versa. Anybody knows how to do it in Silverlight?
I tried it, but I either get SelectedItem reset in the second combobox when I change the value in the first, or I basically get an infinite loop of Collection1Changed -> Collection1SelectionChanged -> Collection2Changed -> Collection2SelectionChanged -> Collection1Changed -> ...
Anybody knows of a good technique?