diff options
Diffstat (limited to 'Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs')
| -rw-r--r-- | Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs b/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs index 79aa75609..81927608f 100644 --- a/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs +++ b/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs @@ -29,6 +29,17 @@ namespace Tango.FSE.UI.ViewModels NavigationManager.MenuItems.Add(new NavigationMenuItem(() => { + NavigationManager.NavigateTo<InternalModule>(nameof(EventsView)); + }) + { + Name = "Events", + Index = 1, + Description = "View the active and history of the connected machine events.", + Image = ResourceHelper.GetImageFromResources("Images/Menu/events.png"), + }); + + NavigationManager.MenuItems.Add(new NavigationMenuItem(() => + { NavigationManager.NavigateTo<InternalModule>(nameof(SettingsView)); }) { |
