2011-12-29 215 views
-2

我知道這很簡單,但我在XAML中非常新。訪問WPF中的資源

我有兩個文件夾在我的解決方案 資源\圖像\ font.png 形狀\ dictonary1.xaml 的soultion還有的App.xaml和mainwindow.xaml

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

在我dictonary1.xaml文件我添加一個包含背景畫筆的標籤 但是拋出一個錯誤

這個工作很好,我在MainWindow.xaml文件中做同樣的事情。

的font.png文件屬性 生成操作資源和 複製到輸出目錄總是始終複製

我希望我清楚

+0

而錯誤是...? – 2011-12-29 02:59:01

+0

'在'System.Windows.Baml2006.TypeConverterMarkupExtension'提供值時拋出異常。'行號「282」和行位置「22」。 – Amruta 2011-12-29 03:11:04

回答

0

你合併dictionary1.xaml到mainwindow.xaml?如果圖像在dictionary1.xaml中使用,那麼試試這個:

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

是的,我已經在mainwindow.xaml中合併了dicitinary1.xaml。 將也拋出錯誤 – Amruta 2011-12-29 06:53:32