Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aminmirzaeione/wfalert_cs

Alert message display library in Windows form
https://github.com/aminmirzaeione/wfalert_cs

csharp library netframework visual-studio winforms

Last synced: about 2 months ago
JSON representation

Alert message display library in Windows form

Awesome Lists containing this project

README

        

# WFAlertProject

👨‍💻 About Project


Alert message display library in Windows form (light and simple version)

⭐ Features


- Display alert with desired message

- Has light and dark themes

- It has Fill and Border styles

- Four different types of Alert (Success - Error - Warning - Info)

🏗 Build Information


- Made in year = February 2018

-----------------------------------------------

- .NET Framework = 4.6.2

- Csharp = Csharp 7.0.0

- Micrsoft Visual Studio = VS 2015

📜 Program Rules


1 - All MIT license rules must be followed

2 - The name of the GitHub founder and main developer (aminmirzaeione) should be mentioned

💡 How to use


1 - Add the library (DLL) file to your Windows Forms application via Add Reference

2 - Write the WFAlert namespace in your C# code

```
using WFAlert;
```
3 - Put a button on your form and call its click event

4 - Enter the following code to display an Alert

```
WFAlert.AlertMessage.Show("Success Message", WFAlert.Types.Success,true);
```
5 - The Show method in the AlertMessage class receives three parameters (text message , Alert Type , Close Button Visable)

🎨Styles and Themes


✅Success Alert


Capture28
Capture28
Capture28

⚠️Warning Alert


Capture28
Capture28
Capture28

❗Error Alert


Capture28
Capture28
Capture28

ℹInformation Alert


Capture28
Capture28
Capture28