blob: a6ee9ee2aacb5c414cccf5832e4eca607fa06874 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.Core.Commands;
using Tango.MachineStudio.Common.Notifications;
namespace Tango.MachineStudio.UI.ViewModels
{
public class MachineLoginViewVM : DialogViewVM
{
public String Password { get; set; }
public RelayCommand<String> LoginCommand { get; set; }
public RelayCommand CancelCommand { get; set; }
public MachineLoginViewVM()
{
LoginCommand = new RelayCommand<string>(Login);
CancelCommand = new RelayCommand(Cancel);
}
private void Login(string password)
{
Password = password;
Accept();
}
}
}
|