mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
50 lines
2.1 KiB
C#
50 lines
2.1 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: ZuneUI.AddCreditCardToAccountWizard
|
|
// Assembly: ZuneShell, Version=4.7.0.0, Culture=neutral, PublicKeyToken=ddd0da4d3e678217
|
|
// MVID: FC8028F3-A47B-4FB4-B35B-11D1752D8264
|
|
// Assembly location: C:\Program Files\Zune\ZuneShell.dll
|
|
|
|
namespace ZuneUI
|
|
{
|
|
public class AddCreditCardToAccountWizard : AccountManagementWizard
|
|
{
|
|
private AccountManagementFinishStep _finishStep;
|
|
private AccountManagementErrorPage _errorStep;
|
|
|
|
public AddCreditCardToAccountWizard()
|
|
{
|
|
this.State.ContactInfoStep.LightWeightOnly = true;
|
|
this._finishStep = new AccountManagementFinishStep(this, this.State, Shell.LoadString(StringId.IDS_ACCOUNT_FINISHED_DESCRIPTION));
|
|
this._errorStep = new AccountManagementErrorPage(this, Shell.LoadString(StringId.IDS_ACCOUNT_ADD_CC_TO_ACCOUNT_ERROR_TITLE), Shell.LoadString(StringId.IDS_ACCOUNT_ADD_CC_TO_ACCOUNT_ERROR_DESC));
|
|
PaymentInstrumentStep paymentInstrumentStep = this.State.PaymentInstrumentStep;
|
|
paymentInstrumentStep.NextTextOverride = Shell.LoadString(StringId.IDS_OK_BUTTON);
|
|
paymentInstrumentStep.DetailDescription = Shell.LoadString(StringId.IDS_BILLING_ADD_CC_TO_ACCOUNT_DESC);
|
|
this.AddPage(State.ContactInfoStep);
|
|
this.AddPage(State.ListAndAddPaymentInstrumentStep);
|
|
this.AddPage(paymentInstrumentStep);
|
|
this.AddPage(_finishStep);
|
|
this.AddPage(_errorStep);
|
|
}
|
|
|
|
public bool HideOnComplete
|
|
{
|
|
get => this._finishStep.HideOnComplete;
|
|
set
|
|
{
|
|
if (this._finishStep.HideOnComplete == value)
|
|
return;
|
|
this._finishStep.HideOnComplete = value;
|
|
this.FirePropertyChanged(nameof(HideOnComplete));
|
|
}
|
|
}
|
|
|
|
protected override void OnAsyncCommitCompleted(bool success)
|
|
{
|
|
base.OnAsyncCommitCompleted(success);
|
|
if (!success)
|
|
return;
|
|
this._finishStep.ClosingMessage = Shell.LoadString(StringId.IDS_ACCOUNT_ADD_CC_TO_ACCOUNT_SUCCESS_DESC);
|
|
}
|
|
}
|
|
}
|