Пример #1
0
        public AmountToWithdrawViewModel()
        {
            ButtonCommand = new RelayCommand(new Action<object>(btnAmount_Click));
            AmountChangeCommand = new RelayCommand(new Action<object>(btnAmountChange_Click));
            KeyButtonCommand = new RelayCommand(new Action<object>(KeyButtonCommand_Click));
            Progress += 80;

        }
Пример #2
0
 public WithdrawCashViewModel()
 {
     ButtonCommand = new RelayCommand(new Action<object>(cardEnteredButton_Click));
     Progress += 20;
 }
        public BioAuthenticationViewModel()
        {
            ButtonCommand = new RelayCommand(new Action<object>(thumbprintButton_Click));
            Progress += 60;

        }
Пример #4
0
 public BankOptionsViewModel()
 {
     ButtonCommand = new RelayCommand(new Action<object>(WithdrawCash_Click));
 }