我使用 a 创建登录window control
以允许用户登录到WPF
我正在创建的应用程序。
到目前为止,我已经创建了一个方法来检查用户是否在登录屏幕上的ausername
和password
a中输入了正确的凭据,两个.textbox
binding
properties
我通过创建一个bool
方法来实现这一点,就像这样;
public bool CheckLogin()
{
var user = context.Users.Where(i => i.Username == this.Username).SingleOrDefault();
if (user == null)
{
MessageBox.Show("Unable to Login, incorrect credentials.");
return false;
}
else if (this.Username == user.Username || this.Password.ToString() == user.Password)
{
MessageBox.Show("Welcome " + user.Username + ", you have successfully logged in.");
return true;
}
else
{
MessageBox.Show("Unable to Login, incorrect credentials.");
return false;
}
}
public ICommand ShowLoginCommand
{
get
{
if (this.showLoginCommand == null)
{
this.showLoginCommand = new RelayCommand(this.LoginExecute, null);
}
return this.showLoginCommand;
}
}
private void LoginExecute()
{
this.CheckLogin();
}
我也有一个command
我bind
到我的按钮内的xaml
类似这样的;
<Button Name="btnLogin" IsDefault="True" Content="Login" Command="{Binding ShowLoginCommand}" />
当我输入用户名和密码时,它会执行适当的代码,无论是对还是错。但是,当用户名和密码都正确时,如何从 ViewModel 关闭此窗口?
我之前尝试过使用 adialog modal
但效果不佳。此外,在我的 app.xaml 中,我做了类似以下的操作,它首先加载登录页面,然后一旦为真,加载实际的应用程序。
private void ApplicationStart(object sender, StartupEventArgs e)
{
Current.ShutdownMode = ShutdownMode.OnExplicitShutdown;
var dialog = new UserView();
if (dialog.ShowDialog() == true)
{
var mainWindow = new MainWindow();
Current.ShutdownMode = ShutdownMode.OnMainWindowClose;
Current.MainWindow = mainWindow;
mainWindow.Show();
}
else
{
MessageBox.Show("Unable to load application.", "Error", MessageBoxButton.OK);
Current.Shutdown(-1);
}
}
问题:如何Window control
从 ViewModel 关闭登录?
提前致谢。