Skip to main content

Bubbles

The Bubbles extender component enhances all Wisej.NET components by providing additional properties and a useful bubble notification functionality. Every widget can display a popup animated and themed bubble when a value changes.

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);
info

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