public NewComplexSyncGroup(SyncGroupList parentList, int id) : base(parentList) { this._id = id; this._isActive = true; this.UpdateInfo(); }
public DeviceOverfillLand(UIDevice device) { this._device = device; this._list = this.Device.GenerateSyncGroupList(this, true); Deviceland.InitDevicePage(this); this.ShowBackArrow = false; this.ShowComputerIcon = ComputerIconState.Hide; this.ShowNowPlayingX = false; this.ShowPivots = false; this.ShowSearch = false; this.ShowSettings = false; this.UI = "res://ZuneShellResources!DeviceSyncGroups.uix#SyncGroupsPage"; this.BottomBarUI = "res://ZuneShellResources!DeviceSyncGroups.uix#GasGauge"; }
public DetailsBackedSchemaSyncGroup( SyncGroupList list, SyncRulesView view, SyncCategory type, bool inOverfill) : base(list, type) { this._view = view; this._index = -1; this._inOverfill = inOverfill; this._resortTimer = new Timer(this); this._resortTimer.AutoRepeat = false; this._resortTimer.Tick += new EventHandler(this.OnResortTimerTick); this._resortTimer.Interval = 527; this._masterList = new System.Collections.Generic.List <SyncGroup>(); this._sortedList = new System.Collections.Generic.List <SyncGroup>(); this._active = true; }
public ExistingSyncGroup( SyncGroupList parentList, SyncRulesView view, int index, bool isExpandedEntry) : base(parentList) { this._details = view.GetItem(index); this._view = view; this._index = index; this._isExpanded = isExpandedEntry; this.UpdateTitle(); if (!this.IsComplex) { return; } this.UpdateComplexType(); this._originalComplexRuleName = this.Title; this._originalComplexRuleSetup = new AutoPlaylistBuilder(this.ID); }
public SyncGroup(SyncGroupList parentList) : base(parentList) => this._parentList = parentList;
public ExistingSyncGroup(SyncGroupList parentList, SyncRulesView view, int index) : this(parentList, view, index, false) { }