From 3d1002b25ebc05c88336dc56ec03f627fd49d200 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Tue, 24 Jul 2018 16:59:20 +0300 Subject: Fixed issue with light touch scroll viewer. Implemented PPC color fine tuning. --- .../PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs index ba869957d..fc5ab2ba2 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs @@ -111,7 +111,7 @@ namespace Tango.PPC.UI.Notifications return ShowMessageBox(new MessageBoxVM() { Message = message, - Icon = ResourceHelper.GetImageFromResources("Images/MessageBox Icons/information.png"), + Icon = TouchIconKind.AlertOctagon, Title = "Error", Brush = Application.Current.Resources["TangoMessageBoxErrorBrush"] as Brush, }); @@ -127,7 +127,7 @@ namespace Tango.PPC.UI.Notifications return ShowMessageBox(new MessageBoxVM() { Message = message, - Icon = ResourceHelper.GetImageFromResources("Images/MessageBox Icons/information.png"), + Icon = TouchIconKind.InfoCircleSolid, Title = "Information", Brush = Application.Current.Resources["TangoMessageBoxInfoBrush"] as Brush, }); @@ -143,7 +143,7 @@ namespace Tango.PPC.UI.Notifications return ShowMessageBox(new MessageBoxVM() { Message = message, - Icon = ResourceHelper.GetImageFromResources("Images/MessageBox Icons/information.png"), + Icon = TouchIconKind.Alert, Title = "Warning", Brush = Application.Current.Resources["TangoMessageBoxWarningBrush"] as Brush, }); @@ -159,7 +159,7 @@ namespace Tango.PPC.UI.Notifications return ShowMessageBox(new MessageBoxVM() { Message = message, - Icon = ResourceHelper.GetImageFromResources("Images/MessageBox Icons/information.png"), + Icon = TouchIconKind.QuestionCircleSolid, Title = "Confirm", HasCancel = true, Brush = Application.Current.Resources["TangoMessageBoxQuestionBrush"] as Brush, -- cgit v1.3.1