在我的Windows Phone应用程序中,我有这样的结构:
<Grid Width="460" Height="77" Margin="-10,0,0,0" Background="#FFD20000" HorizontalAlignment="Center">
<StackPanel Width="Auto" Orientation="Horizontal" HorizontalAlignment="Center" >
<ToggleButton x:Name="ToggleButton_A" Content="Info" Width="150" Style="{StaticResource ToggleA}" Click="ToggleButton_A_Click" />
</StackPanel>
</Grid>
在我的情况下,我有一个按钮位于竞争者的中心。但是我需要让它填充它的父级表示的所有位置,我该如何实现呢?
答案 0 :(得分:2)
只需删除stackpanel,ToggleButton就会填满所有网格。一切都是为了正确的任务使用正确的容器。