From 010535f3064bbf69f063c5f329b7689c070a4ea8 Mon Sep 17 00:00:00 2001 From: Roy Ben Shabat Date: Sat, 30 Jun 2018 03:59:41 +0300 Subject: Implemented "Dialogs" on TouchPanel and PPC INotificationProvider ! Added Inject method to TangoIOC. Started working on color correction. --- .../Tango.PPC.UI/Notifications/DialogAndView.cs | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DialogAndView.cs (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/Notifications/DialogAndView.cs') 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; + } + } +} -- cgit v1.3.1