Hi
There are two issues that iam facing. One is binding a collection to combobox
In code:
private ObservableCollection<string> errList;
Initially its empty and then i add items to it.
In XAML:
<comboBox ItemsSource="{Binding errList}" IsSynchronizedWithCurrentItem="True"
Isnt this enough to get it done. But no items are seen in the combobox.
Second is toggling the visibility of the combobox when items are present.
<combobox Visibility="{ Binding ElementName=Page1, Path=ItemsPresent, Converter={StaticResource booltoVis} }"
ItemsPresent is a property which returns true of errList has items more than 0. But this is not working.
Please Help