Hi,
I'm using RadTileView and RadFluidContentControl to display small, normal and large views. For some reason the default normal view is displaying correctly but other 2 views are not displayed. Please see below code:
<telerik:RadTileViewItem Header="Test">
<telerik:RadFluidContentControl ContentChangeMode="Manual"
State="{Binding RelativeSource={RelativeSource AncestorType=telerik:RadTileViewItem}, Path=TileState, Converter={StaticResource FluidContentStateConverter}}">
<telerik:RadFluidContentControl.SmallContent>
<TextBlock Text="{Binding Path=textvalue}" />
</telerik:RadFluidContentControl.SmallContent>
<telerik:RadFluidContentControl.Content>
<TextBlock Text="{Binding Path=textvalue1}" />
</telerik:RadFluidContentControl.Content>
<telerik:RadFluidContentControl.LargeContent>
<TextBlock Text="{Binding Path=textvalue2}" />
</telerik:RadFluidContentControl.LargeContent>
</telerik:RadFluidContentControl>
</telerik:RadTileViewItem>
textvalue, textvalue1 and textvalue2 values are assigned in the viewmodel and it is used in the namespace:
<UserControl
d:DataContext="{d:DesignInstance viewModels:TestViewModel}"
... />
Could you help me why small and large contents are not displaying?
Thanks