如何以编程方式将C#中的Image Source设置为XAML Static Resource?

时间:2013-09-04 22:52:28

标签: c# wpf xaml staticresource

我在ResourceDictionary中有Main.xaml

<Window.Resources>
    <ResourceDictionary>
        <BitmapImage x:Key="Customer" UriSource="Icons/customer.png"/>
        <BitmapImage x:Key="Project" UriSource="Icons/project.png"/>
        <BitmapImage x:Key="Task" UriSource="Icons/task.png"/>
    </ResourceDictionary>
</Window.Resources>

我最初使用以下方式设置图像:

<Image Name="TypeIcon" HorizontalAlignment="Left" VerticalAlignment="Center"
    Source="{StaticResource Customer}" Height="16" Width="16"/>

我正在尝试使用C#方法将TypeIcon的{​​{1}}从客户更改为 Project

我尝试过使用:

Source

但是我收到了这个错误:

  

无法隐式将TypeIcon.Source = "{StaticResource Project}"; 类型转换为string

我尝试使用System.Windows.Media.ImageSource定义图像,但这也不起作用。

如何在C#中以编程方式更改图像的new ImageSource()

3 个答案:

答案 0 :(得分:14)

经过大量谷歌搜索,在写这个问题时,我想出了如何做到这一点:

TypeIcon.Source = (ImageSource) Resources["Project"];

答案 1 :(得分:9)

它不适用于静态资源,但无论如何都可能有用......:)

即。如何动态设置Grid的背景

var myBrush = new ImageBrush();
            var image = new Image
                            {
                                Source = new BitmapImage(
                                    new Uri(
                                        "pack://application:,,,/YourAppName;component/Images/Boo.png"))
                            };
myBrush.ImageSource = image.Source;
MainGrid.Background = myBrush;

即。如何动态设置应用程序的图标

var idleIco = new Image
            {
                Source = new BitmapImage(
                    new Uri(
                        "pack://application:,,,/YourAppName;component/Images/idle.ico"))
            };
SomeObjectYouAreUsingToSet.IconSource =idleIco.Source;

答案 2 :(得分:2)

您可以使用ImageSourceConverter类来获得所需内容,例如:

img1.Source = (ImageSource)new ImageSourceConverter().ConvertFromString("/Assets/check.png");