Orc.Notifications
Name | Badge |
---|---|
Chat | |
Downloads | |
Stable version | |
Unstable version |
This library is used to create and display desktop notifications. Notification looks like popup windows and will appear on the top right corner of the screen.
Notifications can be used to briefly display important information to the user.
In order to create notifications in your application use IoC with the INotificationService
interface.
A default Notification
class, which implements the INotification
interface is provided.
public interface INotification
{
string Title { get; set; }
string Message { get; set; }
ICommand Command { get; set; }
TimeSpan ShowTime { get; set; }
SolidColorBrush BorderBrush { get; set; }
SolidColorBrush BackgroundBrush { get; set; }
SolidColorBrush FontBrush { get; set; }
}
Contributions
We would like to thank the following contributors:
Want to contribute to the documentation? We have a guide for that!
Questions
Have a question about Catel or WildGums controls? Use StackOverflow with the Catel tag!