This question is locked. New answers and comments are not allowed.
Hi,
I'm using the First Look example (http://demos.telerik.com/silverlight/#CoverFlow/FirstLook)... in the details at the bottom, how can I add a "Read More" with a hyperlink?
I can't add it to the 'Description' Text block in the XAML with the hyperlink button, so was wondering about alternatives?
Thanks!
I'm using the First Look example (http://demos.telerik.com/silverlight/#CoverFlow/FirstLook)... in the details at the bottom, how can I add a "Read More" with a hyperlink?
I can't add it to the 'Description' Text block in the XAML with the hyperlink button, so was wondering about alternatives?
<TextBlock x:Name="Description" Height="67" Margin="19,0,17,-2" VerticalAlignment="Bottom" Foreground="#FFDFDFDF" TextWrapping="Wrap" FontSize="10.67" RenderTransformOrigin="0.5,0.5" TextAlignment="Center"><TextBlock.RenderTransform> <CompositeTransform/></TextBlock.RenderTransform><!-- <Run Text="Link here"/><LineBreak/> --> <HyperlinkButton Content="Read more" NavigateUri="{Binding uri}" FontSize="9" Loaded="HyperlinkButton_Loaded" Width="{Binding textWidth}"/> <Run Text="{Binding description}"/></TextBlock>Thanks!