aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs
diff options
context:
space:
mode:
authorRoy <Roy.mail.net@gmail.com>2023-03-05 22:47:23 +0200
committerRoy <Roy.mail.net@gmail.com>2023-03-05 22:47:23 +0200
commita47bbe8211c4b7a02c6974cba017d77ea31ffc37 (patch)
tree59e94a7511053aaa0dc78978cb572f3a8fe3c57a /Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs
parentc256fc124a867707c787074c9076227341766794 (diff)
downloadTango-a47bbe8211c4b7a02c6974cba017d77ea31ffc37.tar.gz
Tango-a47bbe8211c4b7a02c6974cba017d77ea31ffc37.zip
Dialog Adaptations.
Separate Job View. Machine Status View Start. EurekaTouchPanel.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs10
1 files changed, 10 insertions, 0 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 c2c069f45..ac1972f5f 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DefaultNotificationProvider.cs
@@ -100,6 +100,7 @@ namespace Tango.PPC.UI.Notifications
_currentMessageBox = value;
RaisePropertyChangedAuto();
RaisePropertyChanged(nameof(HasMessageBox));
+ RaisePropertyChanged(nameof(HasDialogOrMessage));
}
}
@@ -126,6 +127,7 @@ namespace Tango.PPC.UI.Notifications
_currentDialog = value;
RaisePropertyChangedAuto();
RaisePropertyChanged(nameof(HasDialog));
+ RaisePropertyChanged(nameof(HasDialogOrMessage));
}
}
@@ -150,6 +152,14 @@ namespace Tango.PPC.UI.Notifications
}
}
+ public bool HasDialogOrMessage
+ {
+ get
+ {
+ return HasDialog || HasMessageBox;
+ }
+ }
+
/// <summary>
/// Shows an error message box.
/// </summary>