2014-09-03 315 views
0

好吧,我不得不說我剛開始使用WPF和我對XAML一無所知,因此對於我的第一個WPF項目,我會嘗試建立自己的應用程序爲我自己的業務,但即時通訊問題試圖獲得圖像資源。WPF錯誤:無法識別或無法訪問成員「資源」

這是我試過

<Window x:Class="MainWindow" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Title="MainWindow" Height="605.027" Width="1042.214" WindowStyle="None" Background="{StaticResource Circuits}"> 
    <Application.resource>   
     <ImageBrush x:Key="Circuits" ImageSource="Circuits.jpg"/> 
    </Application.resource> 
</Window>` 

但在<Application.resource>行,我發現了錯誤

Do not recognize or can not access the member "resource"

,我只是不知道該怎麼辦

+0

在這裏,你不應該加上「回答」對所有權,而不是你應該只標註由你已經做了綠色的勾答案。 – 2014-09-03 19:07:12

+0

好的。謝謝,我認爲當其他人在尋找與這個問題有關的問題時回答這個問題會有所幫助,但是我不會在將來:D – 2014-09-03 20:29:05

回答

1
<Window x:Class="MainWindow" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Title="MainWindow" Height="605.027" Width="1042.214" WindowStyle="None" Background="{StaticResource Circuits}"> 
    <Window.Resources>   
     <ImageBrush x:Key="Circuits" ImageSource="Circuits.jpg"/> 
    </Window.Resources> 
</Window>` 
+0

您的提示工作,我剛剛添加「Imagenes \」的圖像源和工作,例如: 2014-09-03 17:38:21

0

您是否嘗試過:

<Application.Resources> 

因此,在您爲例:

<Window x:Class="MainWindow" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Title="MainWindow" Height="605.027" Width="1042.214" WindowStyle="None" Background=" {StaticResource Circuits}"> 
<Application.Resources>   
    <ImageBrush x:Key="Circuits" ImageSource="Circuits.jpg"/> 
</Application.Resources> 
</Window> 
+0

yup,而且這是相同的 – 2014-09-03 17:28:26

+0

正是這樣,保持不工作 – 2014-09-03 17:30:41

相關問題