A .net toaster library for very simple and slightly customizable toaster notifications. Heavily inspired by angular-toastr
- Install using nuget or by including the above netoaster project into your WPF app
ErrorToaster.Toast("My Error Message!");
SuccessToaster.Toast("Success message");
WarningToaster.Toast("Warning message", "bottomright");
-
Optional parameters (more to come)
- message - the text to display in the toaster
- position - the position to show the toaster, like "bottomright" (default is topright)
#To do: * add more positions * add optional colors * add more animations * for feature requests open a new issue
#Concept skeleton of code came from this stackoverflow post by Ray Burns. I customized it to my own needs.
#Contribute feel free to submit pull-requests