我正在用wpf写作 我有一个用户控件和用户控件内的图像的DLL 我将用户控件添加到项目中但未显示图像(显示用户控件但没有任何图像)
这是用户控件的代码:
<UserControl x:Class="Shkila.About.About"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300" Background="RoyalBlue">
<Grid>
<StackPanel Orientation="Vertical" FlowDirection="RightToLeft">
<Image Source="Resources/ShkilaLogo.png"/>
<StackPanel Orientation="Horizontal">
<TextBlock Text="1" Foreground="Yellow" Margin="5"/>
<TextBlock Text="2" Foreground="Yellow" Margin="5"/>
</StackPanel>
<TextBlock>
<Hyperlink NavigateUri="http:\\www.vbcity.com" TextDecorations="None">
<Image Source="pack://siteoforigin:,,,/About;Component/Resources/ShkilaLogo.png"></Image>
</Hyperlink>
</TextBlock>
</StackPanel>
</Grid>
我想用图像显示用户控件,如何完成 谢谢大家。