我在TableRoot下有一个包含多个TableSection的设置表:
<TableView HasUnevenRows="True" Intent="Settings">
<TableRoot>
<TableSection Title="Sec1">
<ViewCell>
<StackLayout>
<!-- Items to show, based on value SHow/Hide Sec2-->
</StackLayout>
</ViewCell>
</TableSection>
<TableSection Title="Sec2">
<ViewCell>
<StackLayout x:Name="hideLayout">
<!-- Items to hide -->
</StackLayout>
</ViewCell>
</TableSection>
</TableRoot>
</TableView>
我无法动态显示或隐藏TableSection为
hideLayout.IsVisible = false;
,则此处还有空白区域请提供任何建议来实施。