PulsingTile in Windows Forms Hub Tile

28 Apr 20211 minute to read

This Tile type resembles the Music and Video HubTile in Windows Phone. The image content of HubTile can be zoomed in and out randomly.

PulsingTile

this.HubTile1.TileType = HubTileType.PulsingTile;
Me.HubTile1.TileType = HubTileType.PulsingTile

Pulse duration

In PulsingTile, the time interval between Zoom In and Zoom Out operations can be modified using PulseDuration property. It decreases on increasing the value to this property and vice-versa.

this.HubTile1.PulseDuration = 2;
Me.HubTile1.PulseDuration = 2

Pulse scale

In PulsingTile, the zoom level can be set using PulseScale property.

The following code example shows how to set the PulseScale depth.

this.HubTile1.PulseScale= 2;
Me.HubTile1.PulseScale = 2