This question is locked. New answers and comments are not allowed.
Hello
I am just giving TileList control a spin to see if it is an option for existing application.
I am having a problem with the background. In VS2012 XAML Designer the background is shown but when I run the program the background is White.
Any suggestions?
Thanks
I am just giving TileList control a spin to see if it is an option for existing application.
I am having a problem with the background. In VS2012 XAML Designer the background is shown but when I run the program the background is White.
Any suggestions?
Thanks
<UserControl x:Class="RadControlsSilverlightApp1.MainPage" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" HorizontalAlignment="Center" VerticalAlignment="Center" mc:Ignorable="d" d:DesignWidth="1024" d:DesignHeight="768"> <Grid x:Name="LayoutRoot"> <Grid.Resources> <Style TargetType="TextBlock" x:Key="TileLabelStyle"> <Setter Property="FontSize" Value="32" /> <Setter Property="FontFamily" Value="Arial" /> <Setter Property="FontWeight" Value="Bold" /> <Setter Property="Padding" Value="0 0 0 30" /> <Setter Property="Foreground" Value="Black" /> <Setter Property="VerticalAlignment" Value="Bottom"/> <Setter Property="TextAlignment" Value="Center"/> </Style> </Grid.Resources> <telerik:RadTileList x:Name="RadTileList" ScrollViewer.HorizontalScrollBarVisibility="Visible" SelectionChanged="RadTileList_SelectionChanged" > <telerik:RadTileList.PanoramaBackground> <Image Source="Images/background-Incare1080p.jpg" /> </telerik:RadTileList.PanoramaBackground> <telerik:Tile TileType="Quadruple" Background="Transparent" > <Grid> <Image Source="Buttons/CalendarBtn.png" /> <TextBlock Text="Kalender" Style="{StaticResource TileLabelStyle}" /> </Grid> </telerik:Tile>