Collapse HubSection以编程方式崩溃 - WP8 C ++

时间:2015-05-10 20:02:16

标签: c++ windows-phone-8 winrt-xaml

我正在尝试将HubSection的可见性设置为Collapsed,但是当我这样做时,我的应用程序崩溃并出现以下错误。

accountSection->Visibility = Windows::UI::Xaml::Visibility::Collapsed; // Executed on the main thread.


Error Message: The parameter is incorrect.

有人可以帮助我吗? 感谢

1 个答案:

答案 0 :(得分:1)

这是known issue。不要设置部分的可见性,而是为该集线器命名,并使用add(), insert(), remove()

private void hideSection1Button_Click(object sender, RoutedEventArgs e)
{
    HubName.Sections.Remove(section1);
}