再利用可能な無料のテーマ、特に「inc.xaml」を使用した人はいますか? はいの場合、これを手伝ってもらえますか?nukeation からダウンロードしたサンプルは使用mercury.xaml
しており、正常に動作しますが、inc.xaml に変更すると、いくつかのエラーが発生します。問題は、コンパイラが「incbutton」という名前のスタイルを認識しないことです。以下は私が持っているコードです:
<!--App.xaml-->
<Application
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
x:Class="GeminiSampleProject.App"
StartupUri="MainWindow.xaml">
<Application.Resources>
<!-- Resources scoped at the Application level should be defined here. -->
<ResourceDictionary>
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="/ReuxablesLegacy;component/inc.xaml" />
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
//fragment of code that fire error
<Button Content="Button" HorizontalAlignment="Left" Height="25" Margin="33,16.08,0,0" VerticalAlignment="Top" Width="80" Style="{StaticResource IncButton}" />