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
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);
}