How to Add ImageCollection to HubTile in TabbedMDI
18 Nov 20181 minute to read
You can achieve this requirement using HubTileImageList and ImageListAdv properties.
Property table
| Property | Description |
|---|---|
| ImageListAdv | This property holds to ImageListAdv instance that holds image collection for HubTile transition effects. |
| ImageList | This property holds to ImageList instance that holds image collection for HubTile transition effects. |
This is configured either through code or form designer.
Through code
this.HubTile1.ImageListAdv = this.ImageListAdv;
this.HubTile1.ImageList = this.ImageList;Me.HubTile1.ImageListAdv = Me.ImageListAdv
Me.HubTile1.ImageList = Me.ImageListThrough designer
The following screenshot displays the ImageListAdv property.

The following screenshot displays the ImageList property.
