Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aminmirzaeione/wfalert_cs
- Owner: AminMirzaeiOne
- License: mit
- Created: 2024-10-24T09:24:40.000Z (3 months ago)
- Default Branch: master
- Last Pushed: 2024-10-26T17:15:21.000Z (3 months ago)
- Last Synced: 2024-10-27T03:52:25.668Z (3 months ago)
- Topics: csharp, library, netframework, visual-studio, winforms
- Language: C#
- Homepage:
- Size: 1.15 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
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
⚠️Warning Alert
❗Error Alert
ℹInformation Alert