Hello,
In MaximizedMode minimized tiles (State = MinimizedExpanded) take up space, depending on content. So the height of each panel is different.
When State = Minimized height of all tiles is equal but I can not see the content.
Can I see the content in this mode? Or make equal height of minimized tiles with State = MinimizedExpanded?
Thanks
I have been looking into your issue and even though the XamTilesControl does not a built-in functionality to control the minimized Tiles I think I have found a way for you to achieve your goal. You can try out this Style for the Tiles like this one:
<Style TargetType="{x:Type igTiles:Tile}">
<Style.Triggers>
<DataTrigger Binding="{Binding RelativeSource={RelativeSource Mode=Self}, Path=State }" Value="MinimizedExpanded">
<Setter Property="Height" Value="40" />
</DataTrigger>
</Style.Triggers>
</Style>
Please let me know if you require any further assistance on the matter.
Sincerely,
Petar Monov
Developer Support Engineer
Infragistics Bulgaria
www.infragistics.com/support
Are there any other suggestions?
Thank you for your decision, but I can not use it that way. I do not know the height of the Tiles because it can vary depending on the size of the window.
In addition, the number of panels can be anything.