or
var collection = new ObservableCollection<MyUserControl>();// Add some items to collection heremyRadComboBox.ItemsSource = collection;<telerik:RadComboBox SelectionBoxTemplate="{StaticResource MyUserControlDataTemplate}" ItemTemplate="{StaticResource MyUserControlDataTemplate}" /><DataTemplate x:Key="MyUserControlDataTemplate" > <TextBlock Text="{Binding Name}"/></DataTemplate>My requirement is to set the visibility of RadTreeViewItem. For this sample shared at the http://www.telerik.com/community/forums/wpf/treeview/radtreeviewitem-visibility.aspx post helped me. I modified this sample to incorporate my requirement. I added one more property in BusinessItem for Visibility and bind it with the RadTreeViewItem. But problem is that RadTreeViewItem shows expander button (on left side) even if all its children are set to Collapsed.
I also need to hide expander button for a RadTreeViewItem if all its children are collapsed.
<telerik:InformationLayer> <telerik:MapPolyline Points="{Binding MyPolyline}" Fill="Transparent" Stroke="Teal" StrokeThickness="1" /></telerik:InformationLayer>RenderOptions.SetBitmapScalingMode(oImage, BitmapScalingMode.LowQuality)