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

@@ -32,7 +32,7 @@ namespace FSI.BT.Tools.Commands
break;
case "TIAv15":
files = Global.Settings.SieTiaV13Exe;
files = Global.Settings.SieTiaV15Exe;
break;
case "TIAv16":

View File

@@ -0,0 +1,21 @@
using System.Windows;
namespace FSI.BT.Tools.Commands
{
/// <summary>
/// Shows the main window.
/// </summary>
public class ProcessCommand : CommandBase<ProcessCommand>
{
public override void Execute(object parameter)
{
Gui.FrmProcesses frm = new();
frm.ShowDialog();
}
public override bool CanExecute(object parameter)
{
return Global.AdminRights;
}
}
}