This question is locked. New answers and comments are not allowed.
Hi
I have following tileview:
The tileview contains pictures.
Everything works ok just as long as i make the tilewidth larger or equal to 167
If i make the tilewidth < 167, the tiles don't show any pictures anymore. I can make em as big as i want, but not smaller then 167. This is an enoying problem and i don't see how it could be related to my code, since i can even make the images themselves smaller then 167, but i can not make the tiles any smaller.
Is there a build in limit width?
Best Regards,
Peter
I have following tileview:
<telerik:RadTileView x:Name="PhotoTiles" ItemsSource="{Binding PagedSource, ElementName=myDataPager}" TilesStateChanged="RadTileViewTilesStateChanged" Grid.Column="0" Grid.Row="1" PreservePositionWhenMaximized ="True" telerik:TileViewPanel.IsVirtualized ="True" IsAutoScrollingEnabled="True" TileStateChangeTrigger ="SingleClick" MinimizedColumnWidth ="167" MinimizedRowHeight ="120" ColumnWidth = "167" RowHeight ="120" MaximizeMode = "ZeroOrOne" MinimizedItemsPosition="Bottom" SelectionMode="Single" IsSelectionEnabled="True" > <telerik:RadTileView.ItemTemplate> <DataTemplate telerik:ContainerBinding.ContainerBindings="{StaticResource bindings}"> <TextBlock Text="{Binding Name}" /> </DataTemplate> </telerik:RadTileView.ItemTemplate> <telerik:RadTileView.ContentTemplate> <DataTemplate> <telerik:RadFluidContentControl ContentChangeMode="Automatic" TransitionDuration="0:0:.5" State="{Binding State, Converter={StaticResource tileConverter}}" > <telerik:RadFluidContentControl.Content> <ContentPresenter Content="{Binding Converter={StaticResource myConverter}}" /> </telerik:RadFluidContentControl.Content> <telerik:RadFluidContentControl.LargeContent> <Image x:Name="LargeImage" Tag="{Binding Tag}" Source ="{Binding Image}" Stretch="Uniform" Loaded="ImageLoaded"/> </telerik:RadFluidContentControl.LargeContent> </telerik:RadFluidContentControl> </DataTemplate> </telerik:RadTileView.ContentTemplate> </telerik:RadTileView>The tileview contains pictures.
Everything works ok just as long as i make the tilewidth larger or equal to 167
If i make the tilewidth < 167, the tiles don't show any pictures anymore. I can make em as big as i want, but not smaller then 167. This is an enoying problem and i don't see how it could be related to my code, since i can even make the images themselves smaller then 167, but i can not make the tiles any smaller.
Is there a build in limit width?
Best Regards,
Peter