Skip to content

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

License

Notifications You must be signed in to change notification settings

Dirkster99/UserNotifications

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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