Return 返回主页时转到正确的 hubsection
Return to proper hubsection when returning to mainpage
我正在创建一个 Windows Phone 8.1 应用程序,我的主页有一个 Hub 控件,它由一个(手动创建的)XAML hubsection 和多个从 JSON。我有一个将用户带到新页面的按钮。当用户 returns 到主页时,它当前向用户显示第一个 hubsection。我试图让用户 returns 看到之前关注的 hubsection。
我尝试过:
IList<HubSection> currentSections;
currentSections = mainHub.SectionsInView;
// Do your code
mainHub.SectionsInView = currentSections;
但显然 SectionsInView
是只读的。我在网上找不到任何东西...有没有办法做到这一点?
尝试使用 Hub.ScrollToSection 方法或 Hub.DefaultSectionIndex 属性
我正在创建一个 Windows Phone 8.1 应用程序,我的主页有一个 Hub 控件,它由一个(手动创建的)XAML hubsection 和多个从 JSON。我有一个将用户带到新页面的按钮。当用户 returns 到主页时,它当前向用户显示第一个 hubsection。我试图让用户 returns 看到之前关注的 hubsection。
我尝试过:
IList<HubSection> currentSections;
currentSections = mainHub.SectionsInView;
// Do your code
mainHub.SectionsInView = currentSections;
但显然 SectionsInView
是只读的。我在网上找不到任何东西...有没有办法做到这一点?
尝试使用 Hub.ScrollToSection 方法或 Hub.DefaultSectionIndex 属性