Windows Phone Universal App隐藏Hub部分或动态创建

时间:2014-12-17 22:25:17

标签: windows windows-phone universal

我有时会隐藏一个Hub部分,或者我想动态创建id以便我可以决定将要显示的内容

 <HubSection HeaderTemplate="{StaticResource HubItemHeader}" 
                        Header="{Binding MyViewModel}" 
                        DataContext="{Binding MyViewModel}" 
                        ContentTemplate="{StaticResource MyList}" 
                        Visibility="{Binding IsDisplayed, Converter={StaticResource BoolToVisibilityConverter}}" />

我尝试了这个,但它没有工作

1 个答案:

答案 0 :(得分:0)

您可以在C#

中动态添加Hub Section
HubSection hubSection= new HubSection();

this.Hub.Sections.Add(theHubSection);

读到这个: https://social.msdn.microsoft.com/Forums/en-US/7c9b4355-59de-4a5a-bf7d-3459a2ee760d/adding-hubsections-dynamically?forum=w81prevwCsharp