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
1253
TileView
posted

Hi,

I have attached containing a print screen of a tile view.  Is it possible to adjust the right column - where all collapsed tile views are - to be smaller? If so, can you please show an sample?  Thanks!

 

  • 1095
    Suggested Answer
    Offline posted

    Hi,

    You can use the MinimizedStripWidth property:

    TestTileView.TilePanelSettings.MinimizedStripWidth= 0.1;

    For more detailed information about Minimized Strip, refer the Online Help:

     

    Stefana

  • 3071
    posted

    Hi,
    You can change the width of this column:

    <c:XamWebTileView x:Name="TestTileView">
       
    <c:XamWebTileView.TilePanelSettings>
           
    <c:TilePanelSettings MinimizedStripWidth="50"/>

    or you can set this width with a value between 0 and 1 that is a multiplier of the width
    ...

            <c:TilePanelSettings MinimizedStripWidth="0.25"/>

    Regards,
    Marin