UserNotifications icon indicating copy to clipboard operation
UserNotifications copied to clipboard

Implements a MVVM/WPF Control that shows notificatrions (on top and) at the position of other controls

Build status Release NuGet

Net4 NetCore3

Overview

Lightweight notifications for WPF project based on

Lightweight growl notifications for WPF project from here: http://www.codeproject.com/Articles/499241/Growl-Alike-WPF-Notifications

Theming

Load Light or Dark brush resources in you resource dictionary to take advantage of existing definitions.

    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/UserNotifications;component/Themes/DarkBrushs.xaml" />
    </ResourceDictionary.MergedDictionaries>
    <ResourceDictionary.MergedDictionaries>
        <ResourceDictionary Source="/UserNotifications;component/Themes/LightBrushs.xaml" />
    </ResourceDictionary.MergedDictionaries>

These definitions do not theme all controls used within this library. You should use a standard theming library, such as:

to also theme standard elements, such as, button and textblock etc.

Requirements

  • Visual Studio 2012 / 2010 or later

Sample Screenshots

Screenshot Screenshot Screenshot