我有一個silverlight應用程序,它在目錄/ Styles下的一個單獨的xaml文件中定義了許多樣式。 我的App.xaml看起來是這樣的:Silverlight:爲什麼Silverlight看不到我在MergedDictionary中引用的xaml文件?
<Application.Resources>
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/Styles/Legend.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
Legend.xaml有其生成操作設置爲內容和「不要複製」作爲複製到輸出目錄設置。
我得到的混合的消息是:提前
An error occurred while finding the resource dictionary "/Styles/Legend.xaml"
謝謝!