This question is locked. New answers and comments are not allowed.
Hi,
I´m working with radTileView's Controler. I want that my TileView show different information in small content and large content.
I´m doing this:
<telerik:RadTileView x:Name="tileview" ItemsSource="{Binding ???}">
<telerik:RadTileViewItem>
<telerik:RadFluidContentControl ContentChangeMode="Manual" TransitionDuration="0:0:.5">
<telerik:RadFluidContentControl.SmallContent>
<TextBlock Text="{Binding ListaDesignacao}"></TextBlock>
</telerik:RadFluidContentControl.SmallContent>
<telerik:RadFluidContentControl.Content>
<TextBlock Text="OLa"></TextBlock>
</telerik:RadFluidContentControl.Content>
<telerik:RadFluidContentControl.LargeContent>
<TextBlock Text="{Binding Lista2}"></TextBlock>
</telerik:RadFluidContentControl.LargeContent>
</telerik:RadFluidContentControl>
</telerik:RadTileViewItem>
</telerik:RadTileView>
The problem is ItemSource binding. If I do binding there, the tileview show that information in small and large content. And I want different collections in this contents.
Any idea?
I´m working with radTileView's Controler. I want that my TileView show different information in small content and large content.
I´m doing this:
<telerik:RadTileView x:Name="tileview" ItemsSource="{Binding ???}">
<telerik:RadTileViewItem>
<telerik:RadFluidContentControl ContentChangeMode="Manual" TransitionDuration="0:0:.5">
<telerik:RadFluidContentControl.SmallContent>
<TextBlock Text="{Binding ListaDesignacao}"></TextBlock>
</telerik:RadFluidContentControl.SmallContent>
<telerik:RadFluidContentControl.Content>
<TextBlock Text="OLa"></TextBlock>
</telerik:RadFluidContentControl.Content>
<telerik:RadFluidContentControl.LargeContent>
<TextBlock Text="{Binding Lista2}"></TextBlock>
</telerik:RadFluidContentControl.LargeContent>
</telerik:RadFluidContentControl>
</telerik:RadTileViewItem>
</telerik:RadTileView>
The problem is ItemSource binding. If I do binding there, the tileview show that information in small and large content. And I want different collections in this contents.
Any idea?