Enterwell / Wpf.Notifications

WPF notifications UI controls (as seen in VS Code)
MIT License
394 stars 39 forks source link

Implemented foreground method. Users can now define the text color of… #10

Closed filipjelic closed 6 years ago

filipjelic commented 6 years ago

This PR is based on #4 question. Since the background can be changed, it can make a little bit of mess when I want a lighter background. So I believe that this will be an useful feature.

Small sample...

this.Manager
.CreateMessage()
.Accent("#42A5F5")
.Foreground("#4c4c4c")
.Background("#eeeef2")
.HasBadge("Info")
.HasMessage("Update will be installed on next application restart.")
.Dismiss().WithButton("Update now", button => { })
.Dismiss().WithButton("Release notes", button => { })
.Dismiss().WithButton("Later", button => { })
.Queue();

And we get this

sample

AleksandarDev commented 6 years ago

Looks great!

AleksandarDev commented 6 years ago

Version 1.2.0 is published @arcticwhite 👏