2

如何在 c# 中编码以访问资源中的图像my_image_name?正如我给资源字典名称mydic_name 一样。我可以按名称参考字典吗?

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" x:Name="mydic_name">
                    <Image x:Name="my_image_name" x:Key="my_image_key" Source="Properties/images/device1.png"/>
</ResourceDictionary>
4

1 回答 1

2

假设您ResourceDictionary已加载,您可以执行以下操作:

 var image = (Image)Application.Current.Resources.FindName("my_image_name");
于 2013-02-12T23:28:29.783 回答