我希望有一組包含可以從多個不同的WOF類的引用來定義常見的樣式獨立的DLL中的風格設置的資源。在單獨的DLL WPF
我創建了獨立的DLL,並試圖引用它,但我有問題。
下面是獨立的DLL的代碼:
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Style x:Key="myStyle" TargetType="Button">
<Setter Property="Background" Value="Orange" />
<Setter Property="FontStyle" Value="Italic" />
<Setter Property="Padding" Value="8,4" />
<Setter Property="Margin" Value="4" />
</Style>
<!-- store here your styles -->
</ResourceDictionary>
這裏就是我試着去引用它:
<src:GX3ClientPlugin.Resources>
<ResourceDictionary Source="pack://application:,,,/GX3StyleResources.dll;component/GX3StyleResources.xaml" />
</src:GX3ClientPlugin.Resources>
當運行我得到以下異常:
無法加載文件或程序集「GX3StyleResources.dll,Culture = neutral」或其某個依賴項。系統找不到 指定的文件。
任何想法?
根據我的經驗,如果您在不同的項目中保留資源,圖像等,很難管理。如果不是,我也認爲它沒有什麼好處。 – Ekk