Marek M.
Marek M.

Reputation: 3951

XAML can't see a class

My xaml goes like this:

<DataGrid.Resources>
    <Helpers:EnumHelper x:Key="EnumHelper" />
</DataGrid.Resources>

And my class is defined like this:

namespace MyProj.View.UserControlHelpers {
    public class EnumHelper { }
}

The error I get is this:

The name "EnumHelper" does not exist in the namespace "clr-namespace:MyProj.View.UserControlHelpers".

I've cleaned this project from the studio, then I've deleted every file in bin and obj subdirectories, I've even changed class name, still without success - I'm still getting this error.

EDIT:

My xaml headers are lik this:

<UserControl x:Class="MyProj.View.Partials.TableWindow.Columns"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
             xmlns:i="clr-namespace:System.Windows.Interactivity;assembly=System.Windows.Interactivity" 
             xmlns:cmd="http://www.galasoft.ch/mvvmlight"
             xmlns:Helpers="clr-namespace:MyProj.View.UserControlHelpers"
             xmlns:Model="clr-namespace:MyProj.Model"
             xmlns:ModelHelpers="clr-namespace:MyProj.Model.Helpers"
             mc:Ignorable="d" 
             d:DesignHeight="300" d:DesignWidth="300">

Upvotes: 0

Views: 2572

Answers (1)

ajg
ajg

Reputation: 1753

Your class namespace is

MadMin.View.UserControlHelpers

but you refer to it in xaml as

MyProj.View.UserControlHelpers

Upvotes: 4

Related Questions