我正在尝试将HubSection的可见性设置为Collapsed,但是当我这样做时,我的应用程序崩溃并出现以下错误。
accountSection->Visibility = Windows::UI::Xaml::Visibility::Collapsed; // Executed on the main thread.
Error Message: The parameter is incorrect.
有人可以帮助我吗? 感谢
答案 0 :(得分:1)
这是known issue。不要设置部分的可见性,而是为该集线器命名,并使用add(), insert(), remove()
private void hideSection1Button_Click(object sender, RoutedEventArgs e)
{
HubName.Sections.Remove(section1);
}