NotifyLib 1.0.0

dotnet add package NotifyLib --version 1.0.0                
NuGet\Install-Package NotifyLib -Version 1.0.0                
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="NotifyLib" Version="1.0.0" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NotifyLib --version 1.0.0                
#r "nuget: NotifyLib, 1.0.0"                
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install NotifyLib as a Cake Addin
#addin nuget:?package=NotifyLib&version=1.0.0

// Install NotifyLib as a Cake Tool
#tool nuget:?package=NotifyLib&version=1.0.0                

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.
Product Compatible and additional computed target framework versions.
.NET Framework net46 is compatible.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETFramework 4.6

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.0 138 1/22/2024

v1