mirror of
https://github.com/ZuneDev/ZuneShell.dll.git
synced 2026-07-27 13:11:51 -07:00
49 lines
1.6 KiB
C#
49 lines
1.6 KiB
C#
// Decompiled with JetBrains decompiler
|
|
// Type: ZuneUI.MobileWirelessSyncWizard
|
|
// 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 MobileWirelessSyncWizard : Wizard
|
|
{
|
|
private MobileWirelessSync _mobileWirelessSync;
|
|
|
|
public MobileWirelessSyncWizard()
|
|
{
|
|
this.AddPage(new MobileWirelessSyncConfirmPage(this));
|
|
this.AddPage(new MobileWirelessSyncSummaryPage(this));
|
|
this.AddPage(new MobileWirelessSyncErrorPage(this));
|
|
}
|
|
|
|
protected override void OnSetError(HRESULT hr, object state)
|
|
{
|
|
if (hr == HRESULT._S_OK)
|
|
this.ErrorPageIsEnabled = false;
|
|
base.OnSetError(hr, state);
|
|
}
|
|
|
|
public MobileWirelessSync MobileWirelessSync
|
|
{
|
|
get => this._mobileWirelessSync;
|
|
set
|
|
{
|
|
if (this._mobileWirelessSync == value)
|
|
return;
|
|
this._mobileWirelessSync = value;
|
|
this.FirePropertyChanged(nameof(MobileWirelessSync));
|
|
}
|
|
}
|
|
|
|
public override void Cancel()
|
|
{
|
|
if (this.CurrentPage is MobileWirelessSyncWizardPage currentWizardPage)
|
|
currentWizardPage.OnCancel();
|
|
if (this.CurrentPage is MobileWirelessSyncErrorPage currentErrorPage)
|
|
currentErrorPage.OnCancel();
|
|
base.Cancel();
|
|
}
|
|
}
|
|
}
|