Esempio n. 1
0
        public PaymentInfoStepView()
        {
            ConfirmCommand = new RelayCommand(
                nameof(ConfirmCommand),
                parameter =>
            {
                if (Data.PaymentMethodInfo == null)
                {
                    return;
                }

                WizardNextCommand?.Execute(null);
            });

            InitializeComponent();
        }
Esempio n. 2
0
 private void ConfirmButton_OnClick(object sender, RoutedEventArgs e)
 {
     WizardNextCommand?.Execute(null);
 }