代码之家  ›  专栏  ›  技术社区  ›  user7998549

此项目未引用程序集“SharedProject 1”

  •  0
  • user7998549  · 技术社区  · 7 年前

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

    enter image description here

    但当我尝试引用ResourceDictionaryit时,它给出了一条消息:“Assembly‘SharedProject1’未被该项目引用”。

    <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 回复  |  直到 7 年前
        1
  •  1
  •   mm8    7 年前

    您应该添加您的 ResourceDictionary WPF Custom Control Library 项目或a WPF User Control Library 项目并参考此项目。

    Shared Project 未编译:

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