diff options
| author | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-08-19 19:02:58 +0300 |
|---|---|---|
| committer | Victoria Plitt <Victoria.Plitt@twine-s.com> | 2019-08-19 19:02:58 +0300 |
| commit | c3cacd847c2b2577ef5d815963d1d8f2b557c8ac (patch) | |
| tree | 18bbbdd0da75959cf58722de51f0781187e0d328 /Software/Visual_Studio/Tango.Touch/Controls/MessageBoxVM.cs | |
| parent | d2e231dbe55d7fcae6aa53caf78f72bd58784a98 (diff) | |
| download | Tango-c3cacd847c2b2577ef5d815963d1d8f2b557c8ac.tar.gz Tango-c3cacd847c2b2577ef5d815963d1d8f2b557c8ac.zip | |
PPC Graphic changes
Diffstat (limited to 'Software/Visual_Studio/Tango.Touch/Controls/MessageBoxVM.cs')
| -rw-r--r-- | Software/Visual_Studio/Tango.Touch/Controls/MessageBoxVM.cs | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Touch/Controls/MessageBoxVM.cs b/Software/Visual_Studio/Tango.Touch/Controls/MessageBoxVM.cs index 0330c3cb1..55dc72bf9 100644 --- a/Software/Visual_Studio/Tango.Touch/Controls/MessageBoxVM.cs +++ b/Software/Visual_Studio/Tango.Touch/Controls/MessageBoxVM.cs @@ -12,6 +12,19 @@ namespace Tango.Touch.Controls { public class MessageBoxVM : DialogViewVM { + /// <summary> + /// Represents the available message notification types. + /// </summary> + public enum MessageTypes + { + Info, + Success, + Warning, + Error, + Question, + } + public MessageTypes MessageType { get; set; } = MessageTypes.Info; + public String Title { get; set; } public TouchIconKind Icon { get; set; } |
