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
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
Thanks for the reply.
I don't see TileContainerNormal as being a property of the ultraTilePanel control.