public ProfilePageState(ProfilePage page) { this._zuneTag = page.ProfilePanel.ZuneTag; this._profilePivot = page.ProfilePanel.SelectedPivot; this._chosenIndexSortFriends = page.ProfilePanel.ChosenIndexSortFriends; this._pivotPreference = page.PivotPreference; this._selectedFriendTag = page.ProfilePanel.SelectedFriendTag; this._selectedPlaylistTrack = page.ProfilePanel.SelectedPlaylistTrack; }
public ProfilePage Restore() { Hashtable hashtable = new Hashtable(); hashtable["ZuneTag"] = _zuneTag; hashtable["Pivot"] = _profilePivot; hashtable["ChosenIndexSortFriends"] = _chosenIndexSortFriends; hashtable["FriendTag"] = _selectedFriendTag; hashtable["PlaylistTrack"] = _selectedPlaylistTrack; ProfilePage profilePage = new ProfilePage(this._pivotPreference); profilePage.NavigationArguments = hashtable; return(profilePage); }
internal ProfilePanel( ProfilePage page, string zuneTag, Category profilePivot, Guid playlistTrack, int chosenSortFriends, string selectedFriendTag) : base(page) { this._zuneTag = zuneTag; this._selectedPivot = profilePivot; this._relationshipToSignedInUser = UserRelationship.Unknown; this._chosenIndexSortFriends = chosenSortFriends; this._selectedFriendTag = selectedFriendTag; this._selectedPlaylistTrack = playlistTrack; this._canChangeSelectedItem = true; }
protected override ZunePage GetPage(IDictionary args) => ProfilePage.CreateInstance(args);