Skip to content

Simple Notification Popup for Windows Form Applications (.NET Framework)

License

Notifications You must be signed in to change notification settings

DiyRex/NotifyLib

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

NotifyLib

NuGet Version License

Overview

Notifylib is a .NET library that provides a simple and customizable notification popup for Windows Forms applications.

  • Easily display informative popups with customizable duration and appearance.
  • Supports displaying images, setting background color, and customizing text color.

Compatibility

  • Minimum .NET Version: .NET Framework 4.6

Installation

Install the library via NuGet Package Manager Console:

nuget install NotifyLib

Usage

You can customize various properties of the NotifyPopup class to suit your application's needs.

using Notify;

// ...

NotifyPopup np = new NotifyPopup(
    duration: 2000,           //adjust wait time
    timerInterval: 10,        //adjust moving speed
    title: "Message Title",
    messageBody: "Message Body",
    opacity: 1,
    notifyImage: @"path\to\your\image",
    imgSize: 50,              //adjust notify image size
    bodyColor: Color.LightPink,
    textColor: Color.Black
);

np.Show();

Contributing

  • If you have suggestions or found issues, feel free to create an issue or submit a pull request.

Author

License

  • Notifylib is licensed under the MIT License.

About

Simple Notification Popup for Windows Form Applications (.NET Framework)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages