зеркало из https://github.com/DeGsoft/maui-linux.git
20 строки
597 B
XML
20 строки
597 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:d="ignoreme"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
mc:Ignorable="d"
|
|
x:Class="Xamarin.Forms.Xaml.UnitTests.McIgnorable"
|
|
d:DesignWidth="320"
|
|
d:DesignHeight="800">
|
|
<ContentPage.BindingContext>
|
|
<d:FooBar />
|
|
</ContentPage.BindingContext>
|
|
<StackLayout x:Name="stack">
|
|
<d:FakeControlWithContent>
|
|
<d:Invalid />
|
|
<Button />
|
|
</d:FakeControlWithContent>
|
|
</StackLayout>
|
|
</ContentPage>
|