CMBox is a custom messagebox library for .NET.
You can create a fully modifiable messageboxes for your applications with a single line of code.
Feature List
- Pre made dark theme
- You can edit window properties of Message Box form if you need more customization
- 5 MessageBox types(Success, Warning, Error, Question, Information)
- Create your own message type
- Available buttons; OK, Cancel, Yes, No etc
- Catch user clicks to buttons
You can simply add the dll file as Reference to your project, import library and create your own MessageBoxes.
Here is a simple example for a basic MessageBox;
myCMBox.Show("Title", "Say Hello from Message body");