gpt4 book ai didi

c# - 如何在 Xamarin 表单中的内容页面中添加选项卡式页面

转载 作者:行者123 更新时间:2023-12-04 13:03:35 25 4
gpt4 key购买 nike

我尝试添加 标签页 在内容页面内,因此它不显示任何 UI。
我也试图找到一个解决方案,但我得到:我们不能把 TabbedPage 放在 ContentPage 中
TabbedPage View 应该是父 View 。
There are two tab inside a ContentPage i want to replace it with TabbedPage
但我有这样的要求添加嗨,我尝试在内容页面中添加 TabbedPage,因此它不显示任何 UI。
我也试图找到解决方案,但我发现我们不能将 TabbedPage 放在 ContentPage 中
TabbedPage View 应该是父 View
但我有这样的要求添加 TabbedPage 代替最近和全部。如果有人有任何想法,请让我更新。

最佳答案

如果您使用的是 XAML,这对您来说可能是一个有用的示例:

<?xml version="1.0" encoding="utf-8" ?>
<TabbedPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
prism:ViewModelLocator.AutowireViewModel="True"
xmlns:controls="clr-namespace:XLabs.Forms.Controls;assembly=XLabs.Forms"
xmlns:me="clr-namespace:TabPages;assembly=TabPages"
x:Class="YourApp.YourPage" BarBackgroundColor="#FF0000">
<ContentPage Title="Tab 1">
<StackLayout Padding="4">
<!-- Content of the first tab -->
</StackLayout>
</ContentPage>
<ContentPage Title="Tab 2">
<StackLayout Padding="4">
<!-- Content of the second tab -->
</StackLayout>
</ContentPage>
</TabbedPage>

关于c# - 如何在 Xamarin 表单中的内容页面中添加选项卡式页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45430373/

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