如何在xamarin.forms中的选项卡页面中添加用户控件

时间:2017-02-13 10:30:24

标签: c# xaml xamarin xamarin.forms

User control issue

我需要在图片中设计一个页面。读取椭圆内的图像是使用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 >

1 个答案:

答案 0 :(得分:1)

目前你不能。您必须创建CustomRenderer或使用CarouselView