Файл Xaml не видит класс из пространства имен - PullRequest
0 голосов
/ 26 мая 2019

Почему App.xml не находит класс CaptionButtonRectToMarginConverter в файле Shell \ CaptionButtonRectToMarginConverter.cs?

Error XDG0008 File App.xml Line 13

The name "CaptionButtonRectToMarginConverter" does not exist in the namespace
"clr-namespace:ErdBuilder.Shell".

App.xml

<nRoute:Application x:Class="ErdBuilder.App"
                    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
                    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
                    xmlns:nRoute="http://nRoute/schemas/2010/xaml"
                    xmlns:chronos="http://chronos/schemas/2010/xaml"
                    xmlns:shell="clr-namespace:ErdBuilder.Shell"
                    StartupUri="Shell\Shell.xaml"
                    ShutdownMode="OnMainWindowClose">

    <nRoute:Application.Resources>
        <ResourceDictionary>

            <shell:CaptionButtonRectToMarginConverter x:Key="CaptionButtonMarginConverter" />

Shell \ CaptionButtonRectToMarginConverter.cs

namespace ErdBuilder.Shell
{
    public class CaptionButtonRectToMarginConverter : IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, CultureInfo culture)
        {
            ...
        }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...