tag does not exist in XML namespace

后端 未结 7 1241
闹比i
闹比i 2021-01-03 22:34

This error seems to be posted all over the place but each one seems to have its own solution, none of which solved my problem.

I am getting an error for a Resource D

7条回答
  •  被撕碎了的回忆
    2021-01-03 22:49

    If you have user control in same assembly as WPF form make sure you get rid of assembly part while importing namespace

    Wrong Import: xmlns:usercontrol="clr-namespace:CCFARKS.UserControls;assembly=CCFARKS"

    Corret: xmlns:usercontrol="clr-namespace:CCFARKS.UserControls"

提交回复
热议问题