diff options
| author | Roy <roy.mail.net@gmail.com> | 2018-02-18 09:23:15 +0200 |
|---|---|---|
| committer | Roy <roy.mail.net@gmail.com> | 2018-02-18 09:23:15 +0200 |
| commit | 858a2b114f78c87883510e3627874c7632f81177 (patch) | |
| tree | 3999c39b7ac85ec7b07cddd3b72e370e1b6e0487 /Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Navigation | |
| parent | e332170566c295fb4ff375498867f984f1570707 (diff) | |
| download | Tango-858a2b114f78c87883510e3627874c7632f81177.tar.gz Tango-858a2b114f78c87883510e3627874c7632f81177.zip | |
Developer redesign..
Diffstat (limited to 'Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Navigation')
2 files changed, 32 insertions, 0 deletions
diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Navigation/DeveloperNavigationManager.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Navigation/DeveloperNavigationManager.cs new file mode 100644 index 000000000..297caf2dc --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Navigation/DeveloperNavigationManager.cs @@ -0,0 +1,18 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.MachineStudio.Common.Navigation; +using Tango.MachineStudio.Developer.Views; + +namespace Tango.MachineStudio.Developer.Navigation +{ + public class DeveloperNavigationManager + { + public void NavigateTo(DeveloperNavigationView view) + { + DeveloperView.Instance.TransitionControl.AutoNavigate(view.ToString()); + } + } +} diff --git a/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Navigation/DeveloperNavigationView.cs b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Navigation/DeveloperNavigationView.cs new file mode 100644 index 000000000..90548d1b4 --- /dev/null +++ b/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.Developer/Navigation/DeveloperNavigationView.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Tango.MachineStudio.Developer.Navigation +{ + public enum DeveloperNavigationView + { + MachineJobSelectionView, + JobView + } +} |
