我正在使用CarouselView制作照片滑块,有时照片会出现,而其他时候却不显示,并且会显示白色背景,并且像这样反复显示
Xaml代码:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:Test01"
xmlns:forms="clr-namespace:Xamarin.Forms;assembly=Xamarin.Forms.CarouselView"
x:Class="Test01.MainPage">
<StackLayout >
<Label Text="Images " FontSize="30" Margin="20"/>
<forms:CarouselView x:Name="MainCarouselView">
<forms:CarouselView.ItemTemplate>
<DataTemplate>
<Image Source="{Binding .}" x:Name="image" Aspect="AspectFill"/>
</DataTemplate>
</forms:CarouselView.ItemTemplate>
</forms:CarouselView>
</StackLayout>
</ContentPage>
后面的代码:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using System.Xml;
namespace Test01
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
var image = new List<ImageSource>
{
ImageSource.FromResource("Test01.Images.Photo01.jpeg"),
ImageSource.FromResource("Test01.Images.Photo02.jpg"),
ImageSource.FromResource("Test01.Images.Photo03.jpg"),
ImageSource.FromResource("Test01.Images.Photo04.jpg"),
};
MainCarouselView.ItemsSource = image;
}
}
}
照片不存在问题,因为我切换了照片并一直尝试使用1张照片,并且可以正常工作,然后将其添加到其他照片中,我遇到了问题
答案 0 :(得分:0)
可能是图像预加载问题,尤其是在图像较大且下载时间较长的情况下。请考虑延迟加载它们。– boateng 18年9月26日,17:30