添加的登录界面,使用固定账号和密码测试登录逻辑成功
This commit is contained in:
19
WorkStation.Client/ViewModels/MainWindowViewModel.cs
Normal file
19
WorkStation.Client/ViewModels/MainWindowViewModel.cs
Normal file
@ -0,0 +1,19 @@
|
||||
using Prism.Mvvm;
|
||||
|
||||
namespace WorkStation.Client.ViewModels
|
||||
{
|
||||
public class MainWindowViewModel : BindableBase
|
||||
{
|
||||
private string _title = "Prism Application";
|
||||
public string Title
|
||||
{
|
||||
get { return _title; }
|
||||
set { SetProperty(ref _title, value); }
|
||||
}
|
||||
|
||||
public MainWindowViewModel()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user