Enterwell / Wpf.Notifications

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

Header foreground not set by SetForeground method call #13

Closed AleksandarDev closed 6 years ago

AleksandarDev commented 6 years ago
this.NotificationsManager
      .CreateMessage()
      .Accent("#F19021")
      .Background(SupervisorPalette.Palette.AlternativeColor.ToString())
      .Foreground(SupervisorPalette.Palette.MarkerColor.ToString())
      .Animates(true)
      .AnimationInDuration(0.4)
      .AnimationOutDuration(0.1)
      .HasBadge("Info")
      .HasMessage("Update will be installed on next application restart.")
      .Dismiss().WithButton("Update now", UpdateNowCallback)
      .Dismiss().WithButton("Later", button => { })
      .Queue();

image