<
telerik:RadFluidContentControl ContentChangeMode="Manual"
State="Normal"
TransitionDuration="0:0:.5">
<telerik:RadFluidContentControl.Content>
<Border>
<Grid >
<StackPanel VerticalAlignment="Center" HorizontalAlignment="Center" >
<TextBlock Text="{Binding DisplayName}" HorizontalAlignment="Center" /></StackPanel>
</Grid>
</Border>
</telerik:RadFluidContentControl.Content>
<telerik:RadFluidContentControl.LargeContent>
<Grid Background="PowderBlue">
<telerik:RadHtmlPlaceholder></telerik:RadHtmlPlaceholder>
</Grid>
</telerik:RadFluidContentControl.LargeContent>
</telerik:RadFluidContentControl>
When the fluid state changes to Large, it all goes haywire because of the RadHtmlPlaceHolderControl, If I replace that control with an Image or TextBox everything works fine. I want to have four tileViewItems and depending on the tileViewItem I click on it should become large and load the htmlPlaceHolder with the corresponding URL.
But it doesn't work. Any suggestions?
Thanks, Shilpi