0

再利用可能な無料のテーマ、特に「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}" />
4

1 に答える 1

0

私は同じ問題を抱えていましたが、静的リソース「IncButton」がinc.xmlには存在せず、mercery.xmlに存在すると思います。

私の問題は同じでしたが、別の静的リソースであり、.dll ファイルをチェックインしたところ、リソースはmercery にのみ存在し、inc には存在しなかったことがわかりました。

br / J

于 2013-04-11T12:01:48.823 に答える