aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-01-08 16:19:50 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-01-08 16:19:50 +0200
commit68be90b29a5ea3776481ee8e2fde33083c11c670 (patch)
treeb12900aae40c50df19c67be1a5cba630ad13e334 /Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels
parent65e6368cbe7eeddd02bbd43ae5159ab4b762165f (diff)
downloadTango-68be90b29a5ea3776481ee8e2fde33083c11c670.tar.gz
Tango-68be90b29a5ea3776481ee8e2fde33083c11c670.zip
Implemented PPC events history.
Fixed PPC storage inserted navigation.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LayoutViewVM.cs10
1 files changed, 0 insertions, 10 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LayoutViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LayoutViewVM.cs
index 76eda9ac0..52f0fb403 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LayoutViewVM.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LayoutViewVM.cs
@@ -90,10 +90,6 @@ namespace Tango.PPC.UI.ViewModels
/// </summary>
public RelayCommand UpdateCommand { get; set; }
- /// <summary>
- /// Gets or sets the storage command.
- /// </summary>
- public RelayCommand StorageCommand { get; set; }
#endregion
#region Constructors
@@ -116,12 +112,6 @@ namespace Tango.PPC.UI.ViewModels
TangoIOC.Default.GetInstance<MachineUpdateViewVM>().CheckForUpdates();
IsMenuOpened = false;
});
-
- StorageCommand = new RelayCommand(() =>
- {
- NavigationManager.NavigateTo(NavigationView.StorageView);
- IsMenuOpened = false;
- });
}
#endregion