This repository has been archived on 2025-07-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
EnvyUpdate/EnvyUpdate/Notify.cs
2020-05-29 11:21:03 +02:00

19 lines
No EOL
538 B
C#

using Notifications.Wpf;
namespace EnvyUpdate
{
internal class Notify
{
public static void ShowDrivUpdatePopup()
{
var notificationManager = new NotificationManager();
notificationManager.Show(new NotificationContent
{
Title = "EnvyUpdate",
Message = "A new driver update is available for your graphics card. Click for more info.",
Type = NotificationType.Information
}, onClick: Util.ShowMain);
}
}
}