aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2020-05-18 17:26:52 +0300
committerShlomo Hecht <shlomo@twine-s.com>2020-05-18 17:26:52 +0300
commit231591bb23fc74ffd038c2d58af1c8669e6cf61b (patch)
treebb8a52ba8dd482699b560d595eacd52bc69755b5 /Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs
parent049be36c736eb88d9030c2ce720863375ce134cc (diff)
parent9b9121935fbf6fc46a346beac95604086961ddde (diff)
downloadTango-231591bb23fc74ffd038c2d58af1c8669e6cf61b.tar.gz
Tango-231591bb23fc74ffd038c2d58af1c8669e6cf61b.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
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.cs40
1 files changed, 20 insertions, 20 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 81927608f..970d77b89 100644
--- a/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs
+++ b/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs
@@ -16,16 +16,16 @@ namespace Tango.FSE.UI.ViewModels
{
if (AuthenticationProvider.CurrentUser.HasPermission(Tango.BL.Enumerations.Permissions.FSE_RunFSE))
{
- NavigationManager.MenuItems.Add(new NavigationMenuItem(() =>
- {
- NavigationManager.NavigateTo<InternalModule>(nameof(AccountView));
- })
- {
- Name = "Account",
- Index = -1,
- Description = "Manage your account details",
- Image = ResourceHelper.GetImageFromResources("Images/Menu/account.png"),
- });
+ //NavigationManager.MenuItems.Add(new NavigationMenuItem(() =>
+ //{
+ // NavigationManager.NavigateTo<InternalModule>(nameof(AccountView));
+ //})
+ //{
+ // Name = "Account",
+ // Index = -1,
+ // Description = "Manage your account details",
+ // Image = ResourceHelper.GetImageFromResources("Images/Menu/account.png"),
+ //});
NavigationManager.MenuItems.Add(new NavigationMenuItem(() =>
{
@@ -38,16 +38,16 @@ namespace Tango.FSE.UI.ViewModels
Image = ResourceHelper.GetImageFromResources("Images/Menu/events.png"),
});
- NavigationManager.MenuItems.Add(new NavigationMenuItem(() =>
- {
- NavigationManager.NavigateTo<InternalModule>(nameof(SettingsView));
- })
- {
- Name = "Settings",
- Index = 100,
- Description = "Configuration of your Tango FSE",
- Image = ResourceHelper.GetImageFromResources("Images/Menu/settings.png"),
- });
+ //NavigationManager.MenuItems.Add(new NavigationMenuItem(() =>
+ //{
+ // NavigationManager.NavigateTo<InternalModule>(nameof(SettingsView));
+ //})
+ //{
+ // Name = "Settings",
+ // Index = 100,
+ // Description = "Configuration of your Tango FSE",
+ // Image = ResourceHelper.GetImageFromResources("Images/Menu/settings.png"),
+ //});
}
}
}