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
  • 20
    posted

    It's done successfully.

    If you want further explanation , you can email me  matrikaghimire26@gmail.com :)

    private void tile_panel_A_TileStateChanging(object sender, Infragistics.Win.Misc.TileStateChangingEventArgs e)
    {
    e.Cancel = true;
    tile_panel_B.clear();

    //get the detail of tile as :
    // Infragistics.Win.Misc.UltraTile  some_time= e.Tile;

    // create new tile _tile
    Infragistics.Win.Misc.UltraTile T = new Infragistics.Win.Misc.UltraTile();

    //enter tile details and add controls to the tile

    //add new tile to tile_panel_B
    tile_panel_B.Tiles.Add(_tile);

    }

Children
No Data