Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
590
Height of minimized tiles
posted

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

Parents
  • 27093
    posted

    Hello,

     

    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

     

Reply Children