I have a combobox binded to an observable collection through
cmbBladesTab1.ItemsSource = easyRunData.olstBlades;
that works fine. I want the combobox to be binded to all that values plus one.
E.g.
easyRunData.olstBlades;
contains "PL1", "PL2", "PL3", "PL4"
while cmbBladesTab1
contains "ALL BLADES", "PL1", "PL2", "PL3", "PL4"
--ADD all work has to be done from code-behind
Thanks for your help.