5

VS2013 を入手し、VS2010 プロジェクトを開きました。しかし、今では xaml のデザインが見えません。問題は、スタイルが適用されていないことです:

   <UserControl.Resources>
    <ResourceDictionary>
        <ResourceDictionary.MergedDictionaries>
            <ResourceDictionary Source="/Themes/Colors.xaml"/>
        </ResourceDictionary.MergedDictionaries>
    </ResourceDictionary>

エラーが表示されます:

エラー 1 リソース ディクショナリ "/Themes/Colors.xaml" の検索中にエラーが発生しました。

これは VS2010 で正常に動作します。ビルド オプションは Page に設定されています。すべてのターゲット フレームワークは .NET 4 に設定されています。

ディレクトリ構造は次のとおりです。

Host\Themes\Colors.xaml    
Plugins\EqPlugin\Source\ProblemFile.xaml

テーマは VEParameters プロジェクトで定義され、次のように宣言されています。

<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                xmlns:local="clr-namespace:EQPlugin;assembly=VEParameterTool">

エラーが発生したファイルは EqPlugIn ディレクトリにあり、次のように宣言されています。

<UserControl x:Class="EQPlugin.EQControl"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:src="clr-namespace:VEParameterTool;assembly=VEParameterTool"             
             xmlns:l="clr-namespace:EQPlugin"  
             xmlns:sys="clr-namespace:System;assembly=mscorlib"
             xmlns:oxy="http://oxyplot.codeplex.com"
             mc:Ignorable="d">

パスを相対パスに変更しようとしましたが、うまくいきません。アセンブリを削除して再追加したり、再起動したりしました。すべてのプロジェクトは同じフレームワーク用にビルドされています。他に何を試すべきかわかりません。

4

1 に答える 1