如何根据名称(字符串)绑定图像源?

时间:2013-07-24 18:16:57

标签: c# windows-phone-7 xaml

我正在创建一个应用程序,显示包含多种类型消息的rss(alert,warning1,warning2)。所有类型都有一个png(与消息相同)。它们都放在我项目的Images文件夹中。

所以在我的应用程序中,我绑定了一个newsobjects列表。 newsobject具有字符串Type(alert,warning1,warning2)。

但是如何根据此Type属性将图像源绑定到正确的图像?

2 个答案:

答案 0 :(得分:1)

在这个newsObject类的构造函数中添加switch(Type)块,并根据Type值应用不同的图像(我假设在这个类中你有图像或path_to_image属性)

答案 1 :(得分:1)

你必须使用IValueConverter:

For Instance:

public class ImageConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            var imagePath = (string) value;

            switch (imagePath)
            {
                case "warning":
                    return "/Images/warning.png";
                case "error":
                    return "/Images/error.png";
                default:
                    throw new InvalidOperationException();
            }
        }       
    }

然后在xaml:

<UserControl.Resources>
        <converters:ImageConverter x:Key="imageConverter"/>

...

最后:

<Image Source="{Binding DataItem.Type,Converter={StaticResource imageConverter}}" />