or

GridViewMain.ItemsSource = reader;GridViewMain.Rebind();
<telerik:RadGridView Margin="0,22,0,0" Name="radGridView1" DataLoadMode="Asynchronous" FontFamily="Century Gothic" FontSize="16" AutoExpandGroups="True" AutoGenerateColumns="True" >
</telerik:RadGridView>
<telerik:RadListBox ItemsSource="{Binding MyCollection}"> <telerik:RadListBox.ItemsPanel> <ItemsPanelTemplate> <StackPanel Orientation="Horizontal"/> </ItemsPanelTemplate> </telerik:RadListBox.ItemsPanel> <telerik:RadListBox.ItemTemplate> <DataTemplate> <Grid> <TextBlock Text="{Binding MyTextProperty}" Margin="0,0,10,0"/> <GridSplitter Width="5" Background="Red" HorizontalAlignment="Right" ResizeBehavior="CurrentAndNext"/> </Grid> </DataTemplate> </telerik:RadListBox.ItemTemplate></telerik:RadListBox>