gpt4 book ai didi

xaml - 如何在选项卡式页面之前添加内容页面或查看

转载 作者:行者123 更新时间:2023-12-02 02:45:42 25 4
gpt4 key购买 nike

我想在TabbedPage之前添加页面/ View ,该怎么办?

<?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:views="clr-namespace:TestProject.TabbedPages"
x:Class="TestProject.ItemPage"
Title = "Home Page">
<TabbedPage.Children>
<views:AprovedLeaves Title="Approved leaves"/>
<views:PendingLeaves Title="Pending leaves"/>
<views:DeniedLeaves Title="Denied leaves"/>
</TabbedPage.Children>
</TabbedPage>

上面的代码显示了这样的输出

enter image description here

但是制表符之前我需要一些空间。像这样

enter image description here

最佳答案

我建议您使用分段控制插件在Nuget上查找Plugin.Segmented并安装Plugin.SegmentedControl.NetStandard

在iOS上将其初始化,如下所示:

 SegementedControlRenderer.Initialize();  

然后像这样在XAML中使用它
  <control:SegmentedControl x:Name="SegmentedControl" SelectedSegment="{Binding SegmentSelection}" TintColor="White" SelectedTextColor="BlueViolet" DisabledColor="Gray" Margin="8,8,8,8">  
<control:SegmentedControl.Children>
<control:SegmentedControlOption Text="Item 1" />
<control:SegmentedControlOption Text="Item 2" />
<control:SegmentedControlOption Text="Item 3" />
<control:SegmentedControlOption Text="Item 4" />
</control:SegmentedControl.Children>
</control:SegmentedControl>

C# corner blog上提供了分步指南

如有疑问,请随时还原

关于xaml - 如何在选项卡式页面之前添加内容页面或查看,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55221666/

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