所以我在一个解决方案中有一个WPF项目和一个SharedProject。
SharedProject有一个ResourceDictionary文件。我从我的WPF项目中引用了SharedProject。
但是当我尝试引用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>
答案 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?