RadControls for WinForms

The RadPanorama control uses a GridLayout element to display its tiles. By setting the CellSize property, you can change the default size of a single cell which is also the default size of a tile. You can set this property either in the Smart Tag or in Properties window.

Tile can be reordered via Drag and Drop. To allow or disallow this, set the AllowDragDrop property in the Properties window or via code:

Copy[C#] Allow drag and drop
this.radPanorama1.AllowDragDrop = true;
Copy[VB.NET] Allow drag and drop
Me.RadPanorama1.AllowDragDrop = True

RadPanorama uses a fixed number of rows, but the control changes the number of columns at runtime to allow more flexible drag and drop operations. To set the number of rows, set the RowsCount property either through the Properties window or through the Smart Tag menu. You can also specify a minimum number of columns by setting the MinimumColumns property.

Copy[C#] Set RowCount and minimum number of columns
this.radPanorama1.RowsCount = 5;
this.radPanorama1.MinimumColumns = 5;
Copy[VB.NET] Set RowCount and minimum number of columns
Me.RadPanorama1.RowsCount = 5
Me.RadPanorama1.MinimumColumns = 5