xaml - WPF Error Message <The name "X" does not exist in the namespace "Y"> -
in visual studio have bunch of error messages of following type:
the name "x" not exist in namespace "y".
i tried solutions suggested here:
how fix error saying "the type or namespace name x not exist in namespace y"?
and here:
the name <...> not exist in namespace clr-namespace <...>
nothing worked.
any ideas?
you need specify name of project (assembly) types defined in namespace mapping (assembly=nameoftheproject
):
xmlns:local="clr-namespace:yournamespace;assembly=nameoftheproject"
Comments
Post a Comment