How to add HubTile using code example?
9 Dec 20191 minute to read
The following section guides you through the steps involved in setting up a simple HubTile layout design through code.
Add the following namespace.
// namespaces
using Syncfusion.Windows.Forms.Tools;
using Syncfusion.Windows.Forms;
‘namespaces
Imports Syncfusion.Windows.Forms
Imports Syncfusion.Windows.Forms.Tools
The following code example shows how to create the HubTile via code.
// Create the HubTile instance
HubTile HubTile1 = new HubTile();
this.Controls.Add(this.HubTile1);
‘Create the HubTile instance
Dim HubTile1 As HubTile = New HubTile()
Me.Controls.Add(Me.HubTile1)