开发者

Referring to another project in XAML: Undefined CLR namespace

开发者 https://www.devze.com 2023-01-25 18:31 出处:网络
From the project "MarkdownEditorTest"I am trying to refer to controls from another project called "MarkdownEditor" but am getting the "Undefined CLR namespace" error as s

From the project "MarkdownEditorTest" I am trying to refer to controls from another project called "MarkdownEditor" but am getting the "Undefined CLR namespace" error as seen in the image below.

Isn't the way to refer to that project something like below?

 开发者_StackOverflow社区xmlns:me="clr-namespace:MarkdownEditor"

Referring to another project in XAML: Undefined CLR namespace


Note that each project (C#, VB, etc.) creates its own assembly.

If it's in another assembly, you need to specify the assembly name:

xmlns:me="clr-namespace:MarkdownEditor;assembly=MarkdownEditor"

Note that generally each project in a solution creates a distinct assembly. And note that a project's name can be different than the assembly name. You can see the assembly name in the project's properties (in the application tab).

Also, be aware that a project's name can be different than the assembly name. You can see the assembly name in the project's properties (in the application tab).


I know that this may be a silly question, but have you included a reference to the other project in your visual studio project ?


I had the Same problem that occurred though I have added assembly. It's due to .net framework mismatch. So make sure your framework version of the assembly is equal or lower to the current project. I hope this answer will help someone else.

0

精彩评论

暂无评论...
验证码 换一张
取 消