зеркало из https://github.com/DeGsoft/maui-linux.git
27 строки
1.5 KiB
XML
27 строки
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
|
|
x:Class="Xamarin.Forms.Controls.Issues.Issue5268">
|
|
<ListView x:Name="MyListView"
|
|
IsPullToRefreshEnabled="True"
|
|
IsRefreshing="{Binding IsBusy, Mode=OneWay}"
|
|
ItemsSource="{Binding Sources}"
|
|
BackgroundColor="Blue"
|
|
RefreshCommand="{Binding Command}" RowHeight="100">
|
|
<ListView.ItemTemplate>
|
|
<DataTemplate>
|
|
<ViewCell>
|
|
<ScrollView>
|
|
<StackLayout>
|
|
<Label Text="{Binding Val}" MaxLines="100" HorizontalTextAlignment="Center" TextColor="White" FontSize="14" />
|
|
<Label Text="{Binding Val}" MaxLines="100" HorizontalTextAlignment="Center" TextColor="White" FontSize="14" />
|
|
<Label Text="{Binding Val}" MaxLines="100" HorizontalTextAlignment="Center" TextColor="White" FontSize="14" />
|
|
<Label Text="{Binding Val}" MaxLines="100" HorizontalTextAlignment="Center" TextColor="White" FontSize="14" />
|
|
<Label Text="{Binding Val}" MaxLines="100" HorizontalTextAlignment="Center" TextColor="White" FontSize="14" />
|
|
</StackLayout>
|
|
</ScrollView>
|
|
</ViewCell>
|
|
</DataTemplate>
|
|
</ListView.ItemTemplate>
|
|
</ListView>
|
|
</ContentPage> |