This question is locked. New answers and comments are not allowed.
We are evaluating your silverlight controls, and we are testing the functionality of ListBox control. Frequent task will be to bind ListBox to enum members. We have an enum converter class that returns object[] (which contains all members of enum). in XAML we are binding listbox like this:
<telerik:ListBox x:Name="CategoryListBox" ItemsSource="{Binding CurrentCategory, Converter={StaticResource enumConverter}}" />
CurrentCategory is a public property of ViewModel (which is assigned to DataContext). The result is that items are populated in listbox, but listbox cannot be used - it looks like disabled, you cannot select an item. IsEnabled property returns true. If I just remove telerik: from above line, and use standard MS ListBox, everything works fine.
Is this a bug?
<telerik:ListBox x:Name="CategoryListBox" ItemsSource="{Binding CurrentCategory, Converter={StaticResource enumConverter}}" />
CurrentCategory is a public property of ViewModel (which is assigned to DataContext). The result is that items are populated in listbox, but listbox cannot be used - it looks like disabled, you cannot select an item. IsEnabled property returns true. If I just remove telerik: from above line, and use standard MS ListBox, everything works fine.
Is this a bug?