我的WPF應用程序已經開始在設計器視圖中爲窗口拋出此錯誤。它編譯和運行沒有問題,但不會加載到設計器中。未找到StaticResource引用「設置」
但是,最奇怪的部分是它只發生在對設置的第一次引用上。在下面的代碼中,如果我註釋掉第一個<Setter>
,則錯誤會轉移到下一個。如果我然後取消第一個<Setter>
的註釋,則錯誤會回到它。
<Style TargetType="{x:Type ComboBox}">
<Setter Property="FontSize" Value="{Binding Source={StaticResource Settings}, Path=Default.setFontSize}" />
</Style>
<Style TargetType="{x:Type TextBox}">
<Setter Property="FontSize" Value="{Binding Source={StaticResource Settings}, Path=Default.setFontSize}" />
</Style>
<Style TargetType="{x:Type Label}">
<Setter Property="Foreground" Value="{Binding Source={StaticResource Settings}, Path=Default.setFontColor}" />
</Style>
任何想法?
維持在業務規模XAML視圖蘋果酒顯示器本身的工作。使用Expression Blend或忘記設計師。 –
Expression Blend不適用於我的工作環境。 –