public MobileNumberViewModel()
        {
            ButtonCommand = new RelayCommand(new Action<object>(GoButton_Click));
            KeyButtonCommand = new RelayCommand(new Action<object>(KeyButtonCommand_Click));
            Progress += 20;

        }
        public RechargeAmountViewModel()
        {
            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 += 40;

        }
示例#3
0
        public PayCashViewModel()
        {
            ButtonCommand = new RelayCommand(new Action<object>(GoButton_Click));
            Progress += 60;

        }
        public TransactionHomeViewModel()
        {
            ButtonCommand = new RelayCommand(new Action<object>(prePaidButton_Click));
            Progress += 20;

        }