Hi Guys,
I have this combo box
<ComboBox Height="23"
SelectionChanged="comboBox1_SelectionChanged">
<ComboBoxItem Content="Opt1"/>
<ComboBoxItem Content="Opt2"/>
</ComboBox>
Basically what I need is to run two methods, the one already bound (combobox1_SelectionChanged) and an additional one I created. Is this possible?