there is a bug in my gpu detection code somewhere but i don't have an nvidia gpu right now to debug it. hmm.
19 lines
No EOL
500 B
C#
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);
|
|
}
|
|
}
|
|
} |