Xamarin形式:旋转木马视图内的图像大小

时间:2018-03-28 16:15:58

标签: c# xamarin.forms

我在一个stasklayout里面有一个旋转木马视图,它也在滚动视图中,旋转木马视图包含一个以微缩模式显示的图像,我希望图像以实际尺寸显示。如何做到这一点?

<ScrollView>
    <StackLayout>
    <StackLayout VerticalOptions="Fill">
        <cv:CarouselView  ItemsSource="{Binding  MediaItems}"  HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand" >
            <cv:CarouselView.ItemTemplate>
                <DataTemplate>
                    <Image  Aspect="AspectFit" HorizontalOptions="FillAndExpand" Source="{Binding Uri}" />
                </DataTemplate>
            </cv:CarouselView.ItemTemplate>
        </cv:CarouselView>
    </StackLayout>
    <StackLayout Orientation="Vertical" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand">
        <Label Text="{Binding tappedItem.ShortDesc}"  IsVisible="{Binding ShortText,Mode=OneWay}" FontAttributes="Italic" FontFamily="Sans-serif"  />
        <Label Text="{Binding tappedItem.LongDesc}" IsVisible="{Binding LongText,Mode=OneWay}" FontAttributes="Italic"/>
        <local:BorderlessButton Text="{Binding BtnText}" FontSize="Medium"  TextColor="DodgerBlue" FontAttributes="None" Clicked="Button_Clicked"  />
    </StackLayout>
</ScrollView>

1 个答案:

答案 0 :(得分:0)

查看列表视图中的HasUnEvenRows属性是否有像caursoel视图的属性。