8

我有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'sSourceCustomer更改为Project

我试过使用:

TypeIcon.Source = "{StaticResource Project}";

但我得到这个错误:

无法将类型隐式转换stringSystem.Windows.Media.ImageSource

我尝试使用 定义图像new ImageSource(),但这也不起作用。

如何Source在 C# 中以编程方式更改图像?

4

3 回答 3

16

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

TypeIcon.Source = (ImageSource) Resources["Project"];
于 2013-09-04T22:52:28.207 回答
11

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

即如何为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;
于 2014-02-04T11:35:51.600 回答
3

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

img1.Source = (ImageSource)new ImageSourceConverter().ConvertFromString("/Assets/check.png");
于 2013-10-20T17:56:56.893 回答