This question is locked. New answers and comments are not allowed.
Hi,
I have some kind of really strange behavior, using the Expander in an ItemTemplate for a RadDataBoundListBox. After expanding the content, there is a line, right under the expander, showing the type that is bound to the ItemsSource of the RadDataBoundListBox.
Below you can see the DataTemplates I used, and I attached also an image. Thank you for your help.
I have some kind of really strange behavior, using the Expander in an ItemTemplate for a RadDataBoundListBox. After expanding the content, there is a line, right under the expander, showing the type that is bound to the ItemsSource of the RadDataBoundListBox.
Below you can see the DataTemplates I used, and I attached also an image. Thank you for your help.
<DataTemplate x:Key="LinksExpanderContentTemplate"> <Grid Background="LightGray"> <StackPanel Orientation="Horizontal"> <Image x:Name="imgVoteUp" Height="32" VerticalAlignment="Center" Width="32" Source="Images/Road-Forward.png" /> <TextBlock x:Name="tbVoteCount" Text="{Binding Ranking.Votes}" FontSize="18" Foreground="White" VerticalAlignment="Center"></TextBlock> <Image x:Name="imgVoteDown" Height="32" Width="32" VerticalAlignment="Center" Source="Images/Road-Backward.png" /> <StackPanel VerticalAlignment="Center"> <TextBlock x:Name="tbLinkTitleHeader" Text="{Binding Title,Converter={StaticResource titleconv}}" Foreground="#FF1586EA" /> <TextBlock x:Name="tbCreationInformation" Text="{Binding CreationData}" FontSize="9" /> </StackPanel> </StackPanel> </Grid> </DataTemplate> <DataTemplate x:Key="ListExpanderExpandedTemplate"> <Grid Background="LightGray"> <StackPanel VerticalAlignment="Top" HorizontalAlignment="Left"> <TextBlock Text="{Binding Title}" x:Name="linkTitle" FontSize="11" TextWrapping="Wrap" FontWeight="Bold" Foreground="#FF1586EA" Margin="0,3,0,0" /> <StackPanel Orientation="Horizontal" Margin="3,0,0,0"> <Image Height="16" VerticalAlignment="Center" Width="16" Source="Images/geeklisticons/links.png" /> <TextBlock Text="{Binding Url}" VerticalAlignment="Center" x:Name="tbLinkURL" Margin="3,0,0,0" /> </StackPanel> <StackPanel Orientation="Horizontal" Margin="3,0,0,0"> <Image Height="16" VerticalAlignment="Center" Width="16" Source="Images/folder.png" /> <TextBlock Text="{Binding Category.Name}" VerticalAlignment="Center" x:Name="tbLinkFolder" Margin="3,0,0,0" /> </StackPanel> <TextBlock Text="{Binding CreationData}" x:Name="tbPublishTimeSpan" Margin="0,5,0,0" FontStyle="Italic" /> </StackPanel> </Grid> </DataTemplate> <DataTemplate x:Key="LinksAnimatedIndicatorContent"> <Grid /> </DataTemplate> <DataTemplate x:Key="LinksItemTemplate"> <Grid x:Name="outerGrid" > <telerikPrimitives:RadExpanderControl Content="RadExpanderControl" x:Name="linkExpander" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" ContentTemplate="{StaticResource LinksExpanderContentTemplate}" ExpandedStateContentTemplate="{StaticResource ListExpanderExpandedTemplate}" AnimatedIndicatorContentTemplate="{StaticResource LinksAnimatedIndicatorContent}" /> </Grid> </DataTemplate>