Sicherung
This commit is contained in:
@@ -32,7 +32,7 @@ namespace FSI.BT.Tools.Commands
|
||||
break;
|
||||
|
||||
case "TIAv15":
|
||||
files = Global.Settings.SieTiaV13Exe;
|
||||
files = Global.Settings.SieTiaV15Exe;
|
||||
break;
|
||||
|
||||
case "TIAv16":
|
||||
|
||||
21
FSI.BT.Tools/Commands/ProcessCommand.cs
Normal file
21
FSI.BT.Tools/Commands/ProcessCommand.cs
Normal 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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user