aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DialogAndView.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2018-06-30 03:59:41 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2018-06-30 03:59:41 +0300
commit010535f3064bbf69f063c5f329b7689c070a4ea8 (patch)
tree6e3f1b0ea6cc27373c3aea7159069f63ba8c9d0b /Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DialogAndView.cs
parent48904928ae83d9c836fe8408374a21af01e5b132 (diff)
downloadTango-010535f3064bbf69f063c5f329b7689c070a4ea8.tar.gz
Tango-010535f3064bbf69f063c5f329b7689c070a4ea8.zip
Implemented "Dialogs" on TouchPanel and PPC INotificationProvider !
Added Inject method to TangoIOC. Started working on color correction.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DialogAndView.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DialogAndView.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DialogAndView.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DialogAndView.cs
new file mode 100644
index 000000000..ea622ee48
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DialogAndView.cs
@@ -0,0 +1,28 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Windows;
+using Tango.SharedUI;
+
+namespace Tango.PPC.UI.Notifications
+{
+ public class DialogAndView
+ {
+ public DialogViewVM VM { get; set; }
+
+ public FrameworkElement View { get; set; }
+
+ public DialogAndView()
+ {
+
+ }
+
+ public DialogAndView(DialogViewVM vm, FrameworkElement view) : this()
+ {
+ VM = vm;
+ View = view;
+ }
+ }
+}