public PaymentInfoStepView() { ConfirmCommand = new RelayCommand( nameof(ConfirmCommand), parameter => { if (Data.PaymentMethodInfo == null) { return; } WizardNextCommand?.Execute(null); }); InitializeComponent(); }
private void ConfirmButton_OnClick(object sender, RoutedEventArgs e) { WizardNextCommand?.Execute(null); }