or
The objects have a property "IsSelected".
How do I bind this property to the ListBox?
I want the property of the object to change when the user selects an item.
Thanks for help
Michael
<telerik:RadGridView.GroupHeaderTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <CheckBox localBehavior:CheckBoxBehavior.IsEnabled="True" IsThreeState="True" Margin="0 0 3 0"/> <TextBlock Text="{Binding Group.Key}" Background="{Binding Path=Group.Items, Converter={StaticResource GroupHeaderColorResourceValueConverter}}"/> </StackPanel> </DataTemplate> </telerik:RadGridView.GroupHeaderTemplate>public bool IsSelected{ get { return isSelected; } set { if (value == isSelected) return; isSelected = value; NotifyOfPropertyChange(() => IsSelected); if (Parent != null) Parent.IsSelected = isSelected; }}Hi,
Is there a possibility to set a different color to each one of the candlesticks?
SummaryData
[] lstData = GetSummaryData();
VirtualQueryableCollectionView vqResults = new VirtualQueryableCollectionView(lstData) { LoadSize = 100, VirtualItemCount = 100000 };
radTreelistView.ItemsSource = vqResults ;
But i am getting a blank screen.
If I directly assign the source to radtreelistview, it loads correctly.
I need to implement data virtualization with radtreelistview. Are there any demerits of using data virtualization ?
Can you please provide an example project.
Thanks.

// ...{ public class GroupOfItems { [Required(ErrorMessage="Name must be provided!")] public string GroupName { get; set; }// ...