aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2020-05-15 06:55:42 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2020-05-15 06:55:42 +0300
commitf52448dc4e7a33e45cdc08cc5379e4dbd48d2596 (patch)
tree4b249b43d34f6c6b838fc6e361c8b845eb6f3a9e /Software/Visual_Studio/FSE/Tango.FSE.UI/ViewModels/InternalModuleViewVM.cs
parentc3e2331ef244f05c11d172b714f3eb8bf3b0f7d0 (diff)
downloadTango-f52448dc4e7a33e45cdc08cc5379e4dbd48d2596.tar.gz
Tango-f52448dc4e7a33e45cdc08cc5379e4dbd48d2596.zip
Some work..
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"),
+ //});
}
}
}