diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-06 18:39:17 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-06-06 18:39:17 +0300 |
| commit | cff4a8079c4d352cfd47793c701650e62337ed6e (patch) | |
| tree | af145431e541f08ed99b1d3ae377d8a59faedc4f /Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications | |
| parent | 776d934a1adc8c58301e56f6639afdeeccb0dda6 (diff) | |
| download | Tango-cff4a8079c4d352cfd47793c701650e62337ed6e.tar.gz Tango-cff4a8079c4d352cfd47793c701650e62337ed6e.zip | |
Working on PPC..
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications')
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs | 2 | ||||
| -rw-r--r-- | Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/MessageBoxVM.cs | 7 |
2 files changed, 8 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs index e5a825013..917a3e168 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/INotificationProvider.cs @@ -15,7 +15,7 @@ namespace Tango.PPC.Common.Notifications public interface INotificationProvider { /// <summary> - /// Gets or sets the current message box. + /// Gets the current message box. /// </summary> MessageBoxVM CurrentMessageBox { get; } diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/MessageBoxVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/MessageBoxVM.cs index dbb1d0346..b626df880 100644 --- a/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/MessageBoxVM.cs +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Notifications/MessageBoxVM.cs @@ -4,6 +4,7 @@ using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; +using System.Windows.Media; using System.Windows.Media.Imaging; using Tango.PPC.Common.Notifications; @@ -11,8 +12,14 @@ namespace Tango.PPC.Common.Notifications { public class MessageBoxVM : DialogViewVM { + public String Title { get; set; } + public BitmapSource Icon { get; set; } + public Brush Brush { get; set; } + public String Message { get; set; } + + public bool HasCancel { get; set; } } } |
