gpt4 book ai didi

xamarin.forms - 如何将按钮添加到选项卡上方的 TabbedPage

转载 作者:行者123 更新时间:2023-12-02 03:23:13 27 4
gpt4 key购买 nike

这可以创建吗?我需要在选项卡上方添加 2 个按钮,如下所示:

<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local ="clr-namespace:SembIWIS.View"
x:Class="myApp.MainPage">

<local:ProductPage>
</local:ProductPage>

<local:ServicePage>
</local:ServicePage>

</TabbedPage>

How to add two buttons in the TabbedPage, so It will look like :

|----------------------|
| TabbedPage |
|----------------------|
| |
| btn1 btn2 |
| |
|----------------------|
| Tab1 | tab2 | tab3 ..|
|----------------------|
| |
| |
| |
------------------------

最佳答案

是的,这是可以做到的。您可以使用简单的 Grid 结构,也可以使用 VerticalOptions = EndAndExpand 通过 StackLayouts 来完成。这是 Grid 版本:

<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<Grid Grid.Row="0">
// Normal content
</Grid>
<Grid Grid.Row="1">
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<Button Grid.Column="0" Text="Button 1" />
<Button Grid.Column="1" Text="Button 2" />
</Grid>
</Grid>

关于xamarin.forms - 如何将按钮添加到选项卡上方的 TabbedPage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44902646/

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