如何在不使用Windows Phone中的网格的情况下在一行中设置两个按钮
单行内的两个控件
<StackPanel Grid.Row="1">
<Button Content="-" Width="80" />
<Button Content="+" Width="80" />
</StackPanel>
答案 0 :(得分:1)
使用stackPanel的orientation属性
<StackPanel Grid.Row="1" Orientation="Horizontal">
<Button Content="-" Width="80" />
<Button Content="+" Width="80" />
</StackPanel>
答案 1 :(得分:0)
使用stackPanel的orientation属性
方向= “水平”
<StackPanel Grid.Row="1" Orientation="Horizontal">
<Button Content="-" Width="80" />
<Button Content="+" Width="80" />
</StackPanel>