This question is locked. New answers and comments are not allowed.
Hi,
I created a small test app with below code XAML code. Both VS2013 and Blend don't show the page and both complain on Invalid Markup.
Is the problem is with your code or with mine, and how can I fix the problem?
Thanks,
Eitan
​
I created a small test app with below code XAML code. Both VS2013 and Blend don't show the page and both complain on Invalid Markup.
Is the problem is with your code or with mine, and how can I fix the problem?
Thanks,
Eitan
<!--ContentPanel - place additional content here--><Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0"> <Grid.RowDefinitions> <RowDefinition Height="Auto" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <telerikPrimitives:RadHubTile x:Name="rhtFindMyTrip" Grid.Row="0" Width="420" Height="200" Title="find my trip" ImageSource="/Assets/Tiles/sun.png" Count="4"> </telerikPrimitives:RadHubTile> <telerikPrimitives:RadCustomHubTile Grid.Row="1" Width="Auto" Height="128" x:Name="CustomTile" Margin="12, 0, 0, 0" Foreground="{x:Null}"> <!--Eitan FrontContentTemplate="{StaticResource MyTemplate}"--> <telerikPrimitives:RadCustomHubTile.FrontContent> <Grid Background="#FF28853D"> <Image Source="/Assets/Tiles/sun.png" /> <TextBlock Text="Now, 12" FontSize="{StaticResource PhoneFontSizeMedium}" FontFamily="{StaticResource PhoneFontFamilySemiLight}" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="8" Foreground="Black" FontWeight="Bold" /> </Grid> </telerikPrimitives:RadCustomHubTile.FrontContent> <telerikPrimitives:RadCustomHubTile.BackContent> <Grid Background="#FF852881"> <Image Source="/Assets/Tiles/cloud.png" /> <TextBlock Text="Later, 10" FontSize="{StaticResource PhoneFontSizeMedium}" FontFamily="{StaticResource PhoneFontFamilySemiLight}" VerticalAlignment="Top" HorizontalAlignment="Left" Margin="8" Foreground="Black" FontWeight="Bold" /> </Grid> </telerikPrimitives:RadCustomHubTile.BackContent> </telerikPrimitives:RadCustomHubTile></Grid>​