我有一個WPF WrapPanel
,它包含一些Buttons
,我想在運行時重新安排它們。在設計時的XAML代碼如下:在運行時重新安排WrapPanel中的控件
<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
。你能幫我解答嗎?