我需要在图片中设计一个页面。读取椭圆内的图像是使用ContentView
创建的用户控件我需要一个选项卡式视图,我可以实际浏览内容页面,因此我使用TabbedPage
来实现此目的。如何在<TabbedPage.Children>
TabbedPage
共有的用户控件
<?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:userControls="clr-namespace:TestApp.View.UserControls;assembly=TestApp"
xmlns:TabControl="clr-namespace:TestApp.View;assembly=TestApp"
x:Class="TestApp.View.TestView"
>
<!--Not working even if I place this on a grid -->
<!--<userControls:ElectionTimer EndDate="{Binding ELDate}"/>-->
<TabbedPage.Children>
<TabControl:AllView Title="All"/>
<TabControl:EducationView Title="Education"/>
<TabControl:HealthView Title="Health"/>
</TabbedPage.Children>
</TabbedPage >
答案 0 :(得分:1)
目前你不能。您必须创建CustomRenderer
或使用CarouselView
。