gpt4 book ai didi

silverlight - 如何在 Windows Phone 7 中的堆栈面板上对齐按钮?

转载 作者:行者123 更新时间:2023-12-04 18:51:32 26 4
gpt4 key购买 nike

我在堆栈面板中添加了两个按钮并设置对齐方式,如代码所示

<StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">
<Button Content="Button" Height="64" Name="button1" Width="160" HorizontalAlignment="Left" VerticalAlignment="Top"/>
<Button Content="Button" Height="64" Name="button2" Width="160" HorizontalAlignment="Right" VerticalAlignment="Top"/>
</StackPanel>

但这不符合我的要求。我希望它如下图所示。

enter image description here

那么我该怎么做呢?

最佳答案

像这样的东西:

<Grid
Width="480">

<Grid.ColumnDefinitions>
<ColumnDefinition
Width="*" />
<ColumnDefinition
Width="*" />
</Grid.ColumnDefinitions>

<Button
Width="200"
Content="Clear" />

<Button
Grid.Column="1"
Width="200"
Content="Options"
HorizontalAlignment="Right"
/>

</Grid>

更新:由于大众需求,这里有一个没有固定宽度或列的网格。
<Grid>

<Button
Width="150"
Content="Clear"
HorizontalAlignment="Left"
/>

<Button
Width="150"
Content="Options"
HorizontalAlignment="Right"
/>

</Grid>

关于silverlight - 如何在 Windows Phone 7 中的堆栈面板上对齐按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5496180/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com