зеркало из https://github.com/DeGsoft/maui-linux.git
27 строки
1.1 KiB
XML
27 строки
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<local:TestContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
xmlns:local="clr-namespace:Xamarin.Forms.Controls"
|
|
x:Class="Xamarin.Forms.Controls.Bugzilla38416">
|
|
<local:TestContentPage.Content>
|
|
<StackLayout>
|
|
<Button Text="Swap Visibility" Clicked="SwapVisibilityClicked" HorizontalOptions="FillAndExpand" />
|
|
<BoxView x:Name="Box" BackgroundColor="Red" WidthRequest="50" HorizontalOptions="Center" />
|
|
|
|
<StackLayout x:Name="FirstLayout" VerticalOptions="FillAndExpand">
|
|
<ListView x:Name="FirstListView"
|
|
HasUnevenRows="True"
|
|
VerticalOptions="FillAndExpand">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<!--<ViewCell>
|
|
<Label Text="{Binding Name}" FontSize="19"/>
|
|
</ViewCell>-->
|
|
<TextCell Text="{Binding Name}"/>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</StackLayout>
|
|
</StackLayout>
|
|
</local:TestContentPage.Content>
|
|
</local:TestContentPage> |