Bubbles

How to Use

The Bubbles extension can be added to a Wisej.NET project using NuGet Package Manager.

You can use the SetBubbleValue() function to add the bubble to a Wisej Control (in this example, button1) and set the bubble's value.

bubbleNotification1.SetBubbleValue(button1, 42);

Fine tune your Bubbles with the Alignment and Margin properties.

bubbleNotification1.Alignment = System.Drawing.ContentAlignment.MiddleCenter;
bubbleNotification1.Margin = new Padding(10, 10, 10, 10);

Find more information in our JSWidgets example in C# or in VB.NET.

Last updated