Sicherung

This commit is contained in:
maier_S
2022-03-23 10:04:29 +01:00
parent eb5c2fa502
commit f28abfee62
15 changed files with 253 additions and 87 deletions

View File

@@ -237,6 +237,7 @@ namespace FSI.BT.Tools
return new RelayCommand(() =>
{
IsOpenApps = true;
IsOpenAppsVncRdp =
IsOpenHome = false;
});
}
@@ -244,6 +245,36 @@ namespace FSI.BT.Tools
#endregion
#region Apps RDP VNC
private bool _isOpenAppsVncRdp = false;
public bool IsOpenAppsVncRdp
{
get
{
return _isOpenAppsVncRdp;
}
set
{
_isOpenAppsVncRdp = value;
RaisePropertyChanged();
}
}
public ICommand OpenRadialMenuAppsVncRdp
{
get
{
return new RelayCommand(() =>
{
IsOpenAppsVncRdp = true;
IsOpenApps = false;
});
}
}
#endregion
public event PropertyChangedEventHandler PropertyChanged;
void RaisePropertyChanged([CallerMemberName] string? propertyName = null)