In the project I use the resource file.
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" xmlns:local="clr-namespace:SH2.Model.Repairs" xmlns:converter="clr-namespace:SH2.Converters"> <!-- Конвертеры --> <converter:TypeToVisibleConverter x:Key="TypeVisibleConverter" /> <converter:TreeHierarchyConverter x:Key="HierarchyConverter" /> <converter:ValueToStylePaneConverter x:Key="ValToStyleConverter"/> The error "TypeToVisibleConverter name does not exist in the namespace ...", and so with all connections. The code is working, because in another project, exactly the same code and everything works.
<ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="/SH2;component/Resources.xaml"/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> Here an error is issued that an error occurred while searching the resource dictionary, replacing it with another project (SH1), it finds everything, only there are no references to the assembly of another project. Tell me, what could I forget to indicate here?