我有一个 WPF WrapPanel
,它包含一些Buttons
,我想在运行时重新排列它们。设计时的 XAML 代码如下:
<Grid x:Name="LayoutRoot">
<WrapPanel Margin="133,127,216,189" Background="#FF979797">
<Button Content="Button" Width="75"/>
<Button Content="Button" Width="75"/>
<Button Content="Button" Width="75"/>
<Button Content="Button" Width="75"/>
<Button Content="Button" Width="75"/>
<Button Content="Button" Width="75"/>
</WrapPanel>
</Grid>
但是,我想重新安排Buttons
运行时。你能帮我解决这个问题吗?