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
fyr77 5f56d07f19 working towards 2.0
there is a bug in my gpu detection code somewhere but i don't have an nvidia gpu right now to debug it.
hmm.
2020-08-03 19:54:08 +02:00

19 lines
No EOL
500 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 = Properties.Resources.update_popup_message,
Type = NotificationType.Information
}, onClick: Util.ShowMain);
}
}
}