7

我正在尝试使用图像源(.jpg)显示图标。我在视图模型中创建了一个 Icon 属性并尝试为其分配图像的路径,但我在视图中看不到任何图像。我尝试将路径转换为位图图像,但不起作用。我在这里有什么遗漏吗?

<StackPanel Orientation="Horizontal">
                                <TextBlock Text="{Binding Path=Name}"/>
                                <Image Source="{Binding Path=Icon}"></Image>
                            </StackPanel>




BitmapImage img = new BitmapImage();
                    img.BeginInit();
                    img.CacheOption = BitmapCacheOption.OnLoad;
                    img.CreateOptions = BitmapCreateOptions.IgnoreImageCache;
                    img.UriSource = new Uri("C:\\Users\\Public\\Pictures\\Sample Pictures\\Chrysanthemum.jpg", UriKind.Absolute);
                    img.EndInit();
                    Icon = img;
4

1 回答 1

21

我自己遇到过一次,虽然可能不是最好的解决方案,但以下对我有用。

1. 将图像添加到您的项目中,例如:

  • 为您的项目创建一个文件夹 images/icons 并在其中添加图像。
  • 将图像的构建操作设置为内容(如果较新则复制)

2. 创建一个 ImageSource 属性:

    public ImageSource YourImage
    {
        get { return _yourImage; }
        set 
        { 
            _yourImage = value;
            NotifyOfPropertyChange(() => YourImage);
        }
    }

(注:我用caliburn micro辅助绑定)

3. 像这样更新 ImageSource:

            if(!string.IsNullOrEmpty("TheImageYouWantToShow"))
            {
                var yourImage = new BitmapImage(new Uri(String.Format("Images/Icons/{0}.jpg", TheImageYouWantToShow), UriKind.Relative));
                yourImage.Freeze(); // -> to prevent error: "Must create DependencySource on same Thread as the DependencyObject"
                YourImage = yourImage;
            }
            else
            {
                YourImage = null;   
            }

4. 将源属性绑定到 YourImage 属性:

(你已经这样做了)

于 2013-01-16T12:46:58.243 回答