This commit is contained in:
ShaneN 2019-08-14 12:16:27 -06:00
Родитель 537c5d7517
Коммит 15e2e222e5
3 изменённых файлов: 44 добавлений и 0 удалений

Просмотреть файл

@ -0,0 +1,10 @@
<?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:d="http://xamarin.com/schemas/2014/forms/design"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
x:Class="Xamarin.Forms.Sandbox.TabPage">
<ContentPage Title="Tab 1"></ContentPage>
<ContentPage Title="Tab 2"></ContentPage>
</TabbedPage>

Просмотреть файл

@ -0,0 +1,20 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace Xamarin.Forms.Sandbox
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class TabPage : TabbedPage
{
public TabPage()
{
InitializeComponent();
}
}
}

Просмотреть файл

@ -24,4 +24,18 @@
<Generator>MSBuild:Compile</Generator>
</None>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="TabbedPage.xaml">
<Generator>MSBuild:Compile</Generator>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<EmbeddedResource Update="TabPage.xaml">
<Generator>MSBuild:Compile</Generator>
</EmbeddedResource>
</ItemGroup>
</Project>