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
445
How to set width size of small panel section...
posted

When using the TilePanel control and all the tiles get repositioned to the side because you have selected one to display as a large tile, I was wondering is there a property to set how wide the section of the TilePanel where all the small tiles display?

 

Troy

Parents
No Data
Reply
  • 4219
    posted

    Hi,

     

    You can set the bounds of the panel containing the tiles in normal state.

      private void ultraTilePanel1_TileStateChanged(object sender, TileStateChangedEventArgs e)

            {

                ultraTilePanel1.TileContainerNormal.SetBounds(0, 0, 100, 300);

            }

    (This is just an example, you would need to set the coordinates according to your needs)

    Let me know if this is helpful or if there are any further questions.

     

    Best Regards,

    Stefaniya

     

Children