資源詞典我在主題定義一個資源字典在我的WP7項目開放的文件夾的darktheme.xaml在WP7
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:System="clr-namespace:System;assembly=mscorlib"
xmlns:sys="clr-namespace:System;assembly=System">
<sys:Uri x:Key="AppBarSettingsImage">/Images/dark/Settings.png</sys:Uri>
<sys:Uri x:Key="AppBarTimingsImage" >/Images/dark/Timings.png</sys:Uri>
</ResourceDictionary>
名字和我打電話,這是我的App.xaml像這樣
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Themes/DarkTheme.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
我做了所有的圖像作爲生成操作內容和CopyIfnewer而對於我的主題構建行動頁面
一旦我跑我的項目,它thorows未處理的異常加載資源d ictionary。但是當我在我的主題(資源字典)中註釋掉這段代碼時,它開始工作。
<sys:Uri x:Key="AppBarSettingsImage">/Images/dark/Settings.png</sys:Uri>
<sys:Uri x:Key="AppBarTimingsImage" >/Images/dark/Timings.png</sys:Uri>
其實我設置我的appbar iconuri財產與我的這些靜態資源設置設置這些URI。如這裏討論的 WP7 Image Uri as StaticResource