如何在Xamarin窗体中绑定ListView中的本地嵌入图像?

w8rqjzmb  于 2022-12-07  发布在  其他
关注(0)|答案(2)|浏览(112)

我有一个XAML格式的ListView和一个保存本地嵌入图像路径的List<string>。我无法在List中显示图像。顺便说一下,我可以通过
<Image Source="{local:ImageResource TypingApplication.Images.Icons.Search.png}" />
但是我不能在ListView中显示图像。

<ListView x:Name="ListView"
            ItemsSource="{Binding ListItems}"
            IsEnabled="True"
            IsVisible="True"
            RowHeight="40"
            Opacity="0.9">
    <ListView.ItemTemplate>
        <DataTemplate>
            <ViewCell>                            
                <Image Source="{local:ImageResource TypingApplication.Images.Icons.{Binding .}}"/>
            </ViewCell>                        
        </DataTemplate>
    </ListView.ItemTemplate>
</ListView>

我已经在Extensions文件夹中添加了ImageResourceExtension,在XAML中添加了xmlns:local="clr-namespace:TypingApplication.Extensions",正如我提到的,我可以显示单幅图像,只是ListView有问题。
下面是我的C#代码,其中包含List和Constructor

public List<string> ListItems
{
    get
    {
        return new List<string>()
        {
            "Home.png",
            "Favorite.png",
            "Search.png"
        };
    }
}

public HomePage()
{
    InitializeComponent();
    this.BindingContext = this;
}

请注意,我在项目中使用共享图像。我已将SolutionExplorer中所有图像的属性设置为Embedded resource

yqhsw0fo

yqhsw0fo1#

  • 将列表更改为ObservableCollection
  • IValueConverter实作,将您的系结转换成所需的值
  • 图像属性应设置为EmbeddedResource
public class EmbeddedToImageSourceConverter : IValueConverter
{
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
        if (value is string fileName && parameter is String assemblyName)
        {
            try
            {
                var imageSource = ImageSource.FromResource(assemblyName + "." + fileName, typeof(EmbeddedToImageSourceConverter).GetTypeInfo().Assembly);
                return imageSource;
            }
            catch (Exception)
            {
                return value;
            }
        }
        else
            return value;
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        return value;
    }
}

XAML语言

<ContentPage.Resources>
    <local:EmbeddedToImageSourceConverter x:Key="converter" />
</ContentPage.Resources>

In the listview add binding w.r.to converter resource we just created.

<Image Source="{Binding ., Converter={StaticResource converter}, ConverterParameter='TypingApplication.Images.Icons'}" />
    • 如果您没有使用View Model(MVVM)**,则可以直接在XAML中指定图像文件的名称:
<Image Source="{Binding Source='ImageFileName.png', Converter={StaticResource converter}, ConverterParameter='TypingApplication.Images.Icons'}" />
2o7dmzc5

2o7dmzc52#

如果你想在listview中添加Embedded图片,根据json的回复,你的绑定有一些问题,你可以使用IValueConverter将图片路径转换为正确。
我根据你的代码做了一个示例,你可以看一看:

<ListView HasUnevenRows="True" ItemsSource="{Binding ListItems}">
            <ListView.ItemTemplate>
                <DataTemplate>
                    <ViewCell>
                        <StackLayout>
                            <Image
                                HeightRequest="100"
                                Source="{Binding ., Converter={StaticResource imageconverter}}"
                                WidthRequest="100" />
                        </StackLayout>

                    </ViewCell>
                </DataTemplate>
            </ListView.ItemTemplate>
        </ListView>

 <ContentPage.Resources>
    <local:imageconverter x:Key="imageconverter" />
</ContentPage.Resources>

图像转换器:

public class imageconverter : IValueConverter
{
    public string Source { get; set; }
    public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
    {
         Source = (string)value;

        if (Source == null)
            return null;

        // Do your translation lookup here, using whatever method you require

        var imageSource = ImageSource.FromResource("demo3."+Source, typeof(ImageResourceExtension).GetTypeInfo().Assembly);
        return imageSource;
    }

    public object ConvertBack(object value, Type targetType, object parameter, CultureInfo culture)
    {
        throw new NotImplementedException();
    }
}

您可以根据自己的代码将demo3更改为TypingApplication。

public partial class Page14 : ContentPage
{
    public ObservableCollection<string> ListItems { get; set; }
    public Page14()
    {
        InitializeComponent();

        ListItems = new ObservableCollection<string>()
        {
            "image1.jpg","image2.png","image3.png"
        };

        this.BindingContext = this;
    }
}

作为Prateek的答复,我建议您可以将List〈〉更改为Observablecollection〈〉,因为它实现了INotifyPropertyChanged接口,通知数据更改。
https://learn.microsoft.com/en-us/dotnet/api/system.collections.objectmodel.observablecollection-1?view=netframework-4.8

相关问题