aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-07-24 16:59:20 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-07-24 16:59:20 +0300
commit3d1002b25ebc05c88336dc56ec03f627fd49d200 (patch)
tree0a97f20cfd0acf25f354554fd1790f072b3aac8d /Software/Visual_Studio/PPC/Tango.PPC.UI
parent615311366218b9db2cdf5067b207743f41e95b8d (diff)
downloadTango-3d1002b25ebc05c88336dc56ec03f627fd49d200.tar.gz
Tango-3d1002b25ebc05c88336dc56ec03f627fd49d200.zip
Fixed issue with light touch scroll viewer.
Implemented PPC color fine tuning.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs8
1 files changed, 4 insertions, 4 deletions
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,