我使用创建了一个Login,window control
以允许用户登录到WPF
我正在创建的应用程序。
到目前为止,我已经创建了一个检查用户是否已经在为正确的凭据进入了一个方法username
,并password
在textbox
登录屏幕,上binding
2 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中关闭此窗口?
我以前尝试过使用a,dialog modal
但效果不佳。此外,在我的app.xaml中,我做了如下操作,首先加载登录页面,然后为true,则加载实际的应用程序。
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 关闭登录名?
提前致谢。