- .NetFramework 4.5+
Install-Package Vip.Notification
using Vip.Notification;
// 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
❤️