2
所以我有一個圖書館,託管我的所有圖像。這適用於我的WinForms控件;但是,我很難在WPF中使用這個類庫的資源。如何在WPF控件內的類庫中使用.resx文件?
MyApp.Resources //Is my control library project.
Resources //Is the folder that contains all my images at the root of the project.
如何從我的類庫中引用WPF控件中的圖像?
我曾嘗試:
<ImageBrush ImageSource="/MyApp.Resources;Resources/manage.png" />
--UserControl物業
Resources="pack://application:,,,/MyApp.Resources;Resources.resx">
退房此鏈接http://www.codeproject.com/Articles/35159/WPF-Localization-Using-RESX-Files – Phil