此项目未引用程序集“SharedProject1”

时间:2017-08-10 09:32:53

标签: c# wpf reference resourcedictionary

所以我在一个解决方案中有一个WPF项目和一个SharedProject。

SharedProject有一个ResourceDictionary文件。我从我的WPF项目中引用了SharedProject。

enter image description here

但是当我尝试引用ResourceDictionaryit时会给出消息:'Assembly'AparticProject1'没有被这个项目引用'。

<Window x:Class="WPF.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:local="clr-namespace:ietstesten"
    mc:Ignorable="d"
    Title="MainWindow" Height="350" Width="525">
<Window.Resources>
    <ResourceDictionary Source="pack://application:,,,/SharedProject1;component/Dictionary1.xaml" />
</Window.Resources>
<Grid>

</Grid>

1 个答案:

答案 0 :(得分:1)

您应该将ResourceDictionary添加到WPF Custom Control Library项目或WPF User Control Library项目并引用此项目。

未编译Shared Project

What is the difference between a Shared Project and a Class Library in Visual Studio 2015?