From e571f20e27c4fca6bb6efe03d6427a1f332f9830 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Sun, 27 May 2018 19:33:15 +0300 Subject: Working on panel pc. --- .../Navigation/INavigationManager.cs | 20 ++++++++++++++++++++ .../Tango.PPC.Common/Navigation/NavigationView.cs | 18 ++++++++++++++++++ 2 files changed, 38 insertions(+) create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation/INavigationManager.cs create mode 100644 Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation/NavigationView.cs (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation') diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation/INavigationManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation/INavigationManager.cs new file mode 100644 index 000000000..f29476631 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation/INavigationManager.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Common.Navigation +{ + /// + /// Represents the Machine Studio views navigation manager. + /// + public interface INavigationManager + { + /// + /// Navigates to the specified view. + /// + /// The view. + void NavigateTo(NavigationView view); + } +} diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation/NavigationView.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation/NavigationView.cs new file mode 100644 index 000000000..d860bce76 --- /dev/null +++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/Navigation/NavigationView.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.PPC.Common.Navigation +{ + /// + /// Represents the available views to navigate to using the . + /// + public enum NavigationView + { + LoadingView, + LayoutView, + JobsView, + } +} -- cgit v1.3.1