29 lines
703 B
C#
29 lines
703 B
C#
using System.Windows;
|
|
|
|
namespace FSI.BT.Tools.Commands
|
|
{
|
|
/// <summary>
|
|
/// Shows the main window.
|
|
/// </summary>
|
|
public class LoginCommand : CommandBase<LoginCommand>
|
|
{
|
|
public override void Execute(object parameter)
|
|
{
|
|
Lib.Guis.AutoPw.FrmMain frmMain = new()
|
|
{
|
|
CloseAtLostFocus = true,
|
|
WindowStartupLocation = WindowStartupLocation.CenterOwner,
|
|
};
|
|
frmMain.ShowDialog();
|
|
|
|
Global.UserRights =
|
|
Global.AdminRights = frmMain.PwOk;
|
|
}
|
|
|
|
|
|
public override bool CanExecute(object parameter)
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
} |