40 строки
1.7 KiB
XML
40 строки
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<controls:TestContentPage
|
|
xmlns:controls="clr-namespace:Xamarin.Forms.Controls"
|
|
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.Controls.Issues.Issue8508">
|
|
<ContentPage.Content>
|
|
<Grid
|
|
RowSpacing="0">
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition Height="Auto"/>
|
|
<RowDefinition Height="*" />
|
|
</Grid.RowDefinitions>
|
|
<Label
|
|
BackgroundColor="Black"
|
|
TextColor="White"
|
|
Text="Scroll in the CollectionView below. If an alert appears, the Scrolled method has been invoked and the test has passed."/>
|
|
<CollectionView
|
|
x:Name="collectionView"
|
|
Grid.Row="1"
|
|
Scrolled="CollectionView_Scrolled">
|
|
<CollectionView.ItemsLayout>
|
|
<LinearItemsLayout
|
|
Orientation="Vertical"
|
|
ItemSpacing="0" />
|
|
</CollectionView.ItemsLayout>
|
|
<CollectionView.ItemTemplate>
|
|
<DataTemplate>
|
|
<Label
|
|
Text="{Binding}"
|
|
HorizontalOptions="FillAndExpand"/>
|
|
</DataTemplate>
|
|
</CollectionView.ItemTemplate>
|
|
</CollectionView>
|
|
</Grid>
|
|
</ContentPage.Content>
|
|
</controls:TestContentPage> |