我在wpf usercontrol中遇到有关图像源的问题。
解决方案包含
详细说明:
我试过了,但没有工作
<Image HorizontalAlignment="Left" Height="145" VerticalAlignment="Top" Width="144" Source="pack://siteoforigin:,,,/Resources/refresh_blue.png"/>
问题:我无法将.png图像设置为图像控制源。
请帮帮我
请在此WpfApplication2.zip链接
上找到该项目答案 0 :(得分:0)
只需使用
... Source="Resources/refresh_blue.png" ...
您正在引用同一程序集的资源。所以你不必指定额外的信息。
在您的项目中,保留Loaded
个事件并在XAML中指定控件:
<Window x:Class="WpfApplication2.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cl="clr-namespace:ClassLibrary1;assembly=ClassLibrary1"
Title="Window1" Height="246" Width="348">
<Grid Name="maiGrid">
<cl:UserControl1/>
</Grid>
</Window>