我使用UWP https://github.com/gregstoll/UniversalWrapPanel的自定义包裹面板实现。我在面板上添加了一些按钮,但我不明白如何从中删除所有项目。
<ScrollViewer Grid.Column="2" VerticalScrollBarVisibility="Auto" Grid.RowSpan="2">
<wrapControl:WrapPanel x:Name="wrapper" Margin="10" Grid.Column="2" Background="Bisque">
</wrapControl:WrapPanel>
</ScrollViewer>
我尝试使用此代码
wrapper.Children.Remove(0);
它的工作正确,但我不知道如何从包装器中取出所有项目并将其删除。
答案 0 :(得分:2)
也许
wrapper.Children.Clear();