This question is locked. New answers and comments are not allowed.
Hi,
I do not think the first question to me but I try anyway!
I use FluidControl in my xaml I managed to scroll my items minimized mode but in maximizedmode, impossible to scroll if the content is very dense, any idea?
this is my code :
Thanks for all!
I do not think the first question to me but I try anyway!
I use FluidControl in my xaml I managed to scroll my items minimized mode but in maximizedmode, impossible to scroll if the content is very dense, any idea?
this is my code :
<Grid Grid.Row="1"> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="*" /> </Grid.RowDefinitions> <telerik:RadTileView Grid.Row="0" Grid.Column="0" MinHeight="300" ColumnsCount="2" MinimizedRowHeight="180" RowHeight="250" MinimizedColumnWidth="190" MinimizedItemsPosition="Left" PreservePositionWhenMaximized="True" TileStateChangeTrigger="SingleClick" MaximizeMode="One" IsDockingEnabled="True" > <telerik:RadTileViewItem Header="EnsembleElectrique1" TileState="Maximized" MinHeight="300" > <telerik:RadFluidContentControl ContentChangeMode="Automatic" TransitionDuration="0:0:.5" NormalToLargeThreshold=""> <telerik:RadFluidContentControl.SmallContent> <Grid Width="150" Height="150"> <TextBlock Text="Item1 ContentSmall"/> </Grid> </telerik:RadFluidContentControl.SmallContent> <telerik:RadFluidContentControl.LargeContent> <StackPanel Width="600" Height="600"> <TextBlock Text="Item1 ContentLarge"/> <TextBlock Text="Item3 ContentLarge"/> <TextBlock Text="Item2 ContentLarge"/> <TextBlock Text="myitem" Height="250" Width="150" /> </StackPanel> </telerik:RadFluidContentControl.LargeContent> </telerik:RadFluidContentControl> </telerik:RadTileViewItem> <telerik:RadTileViewItem Header="Documents"> <telerik:RadFluidContentControl ContentChangeMode="Automatic" TransitionDuration="0:0:.5"> <telerik:RadFluidContentControl.Content> <Grid Width="150" Height="150"> <TextBlock Text="Item2 Content"/> </Grid> </telerik:RadFluidContentControl.Content> <telerik:RadFluidContentControl.LargeContent> <Grid Width="600" Height="600"> <TextBlock Text="Item2 ContentLarge"/> </Grid> </telerik:RadFluidContentControl.LargeContent> </telerik:RadFluidContentControl> </telerik:RadTileViewItem> <telerik:RadTileViewItem Header="Portions intégrités"> <telerik:RadFluidContentControl ContentChangeMode="Automatic" TransitionDuration="0:0:.5"> <telerik:RadFluidContentControl.Content> <Grid Width="150" Height="150"> <TextBlock Text="Item3 Content"/> </Grid> </telerik:RadFluidContentControl.Content> <telerik:RadFluidContentControl.LargeContent> <Grid Width="600" Height="600"> <TextBlock Text="Item3 ContentLarge"/> </Grid> </telerik:RadFluidContentControl.LargeContent> </telerik:RadFluidContentControl> </telerik:RadTileViewItem> </telerik:RadTileView></Grid>Thanks for all!