在WPF中访问资源

时间:2011-12-29 02:51:33

标签: c# wpf xaml

我知道这很简单,但我在XAML中很新。

我的解决方案中有两个文件夹 资源\图像\ font.png 形状\ dictonary1.xaml 灵魂也有app.xaml和mainwindow.xaml

            <Label ToolTip="Label">
                <Label.Background>
                     <ImageBrush ImageSource="\Resources\Images\Font.png" />
                </Label.Background>
            </Label>

在我的dictonary1.xaml文件中,我添加了一个包含背景画笔的标签 但是给我一个错误

这项工作很好,我在MainWindow.xaml文件中也这样做。

font.png文件属性 构建动作是资源和 复制到输出目录总是复制始终

我希望我很清楚

1 个答案:

答案 0 :(得分:0)

您是否将dictionary1.xaml合并到mainwindow.xaml中?如果图像在dictionary1.xaml中使用,那么试试这个:

<ImageBrush ImageSource="../Resources/Images/Font.png" />