I'd like to knoe how to prevent the UltraTile being closed by clicking the "x" and being enlarged in C#?
There are 2 ways to do it.
1. Either you can set the properties this.ultraTilePanel1.Tiles[3].Settings.ShowCloseButton = False; this.ultraTilePanel1.Tiles[3].Settings.ShowStateChangeButton = False;
this.ultraTile3.Settings.ShowCloseButton = False; this.ultraTile3.Settings.ShowStateChangeButton = False;
2. Or you can handle the StateChanging event of a particular tile at runtime as in:
Hope this helps.