/Vip.Notification

Simple library for toast alert notification in winforms

Primary LanguageC#MIT LicenseMIT

Vip.Notification - A simple toast alert notification for WinForms ☕

Nuget NuGet

Get Started

Requisites

  • .NetFramework 4.5+

Step 0: Install via NuGet and declare using

Install-Package Vip.Notification
using Vip.Notification;

Step 1: Call method Alert

// Sucess
Alert.ShowSucess("My message sucess here");

// Sucess with interval shown
Alert.ShowSucess("My message sucess here", 2000);

// Information
Alert.ShowInformation("My message information here");

// Warning
Alert.ShowWarning("My message warning here");

// Error
Alert.ShowError("My message error here");

// Custom
// For custom is requisite 3 parameters
// Message - Message for print notification
// Image - Image for logo
// Color - Color for background 

Alert.ShowCustom("My custom message here", Image, Color.Blue);

// Custom with interval shown
Alert.ShowCustom("My custom message here", 2000, Image, Color.Blue);

License - MIT

❤️