gpt4 book ai didi

android - xamarin 在整个网格列上形成拉伸(stretch)按钮

转载 作者:行者123 更新时间:2023-11-29 19:04:35 25 4
gpt4 key购买 nike

我想在没有空格的情况下并排放置按钮。

我用网格试过了,但我找不到怎么做。

这是我的代码:

                <StackLayout  HorizontalOptions="FillAndExpand" VerticalOptions="End" Spacing="0" >

<Label Text="Hello " FontSize="Medium"/>
<Label FontSize="Small">This sould be a text?</Label>
<BoxView HeightRequest="1" BackgroundColor="#6fcd11" HorizontalOptions="FillAndExpand" />
<Grid Padding="0" ColumnSpacing="0" RowSpacing="0" BackgroundColor="Aqua" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
<Grid.RowDefinitions>
<RowDefinition Height="*"></RowDefinition>
</Grid.RowDefinitions>
<Grid.ColumnDefinitions >
<ColumnDefinition Width="*"></ColumnDefinition>
<ColumnDefinition Width="*"></ColumnDefinition>
</Grid.ColumnDefinitions>

<Button Grid.Row="0" Grid.Column="0" Text="Ja"></Button>
<Button Grid.Row="0" Grid.Column="1" Text="Nein"></Button>

</Grid>

</StackLayout>

感谢您的帮助。

更新:

结果是这样但是,但是我想补一下蓝色背景不可见。我想删除这两个按钮之间的空格。

enter image description here

最佳答案

通过编码你可以做这样的事情。

new StackLayout
{
Spacing = 0,
Orientation = StackOrientation.Horizontal,
Children =
{
new Button
{
Text = "Ja",
},
new Button
{
Text = "Nein",

},

}
}

关于android - xamarin 在整个网格列上形成拉伸(stretch)按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47756131/

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