我在 CollectionView 中定义了 ItemTemplate - itemTemplate 中有许多标签。
我希望能够滚动并查看所有标签以及
运行它时 Windows 上发生的情况
但在 Android 上它没有发生 - 我看不到滚动条,我也没有
找到原因
代码:
<CollectionView
ItemsSource="{Binding MyList}"
VerticalOptions="FillAndExpand">
<CollectionView.ItemTemplate>
<DataTemplate x:DataType="models:MyModels">
<Border StrokeShape="RoundRectangle 24" HeightRequest="300" StrokeThickness="1" BackgroundColor="White" >
<Grid Margin="0,5,0,5" RowDefinitions="6*,2*,Auto" >
<ScrollView>
<VerticalStackLayout Padding="5" Spacing="5" >
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
<Lable Text="text1" />
</VerticalStackLayout>
</ScrollView>
</Grid>
</Border>
</DataTemplate>
</CollectionView.ItemTemplate>