WPF designer issues : XDG0008 The name “NumericTextBoxConvertor” does not exist in the namespace “clr-namespace:PulserTester.Convertors”

后端 未结 10 1098
遇见更好的自我
遇见更好的自我 2021-02-19 01:13

I have an error that not let me see my designer.. but I have no error on a build and my program runs fine with no problem

I have tried to:

  • Clean and Rebuil
相关标签:
10条回答
  • 2021-02-19 02:10

    I was able to get rid if this problem in the past by adding the actual assembly name to the namespace reference like this:

    xmlns:windowManager="clr-namespace:PulserTester.Convertors;assembly=TheNameOfTheAssemblyWithoutExtension"
    

    This has worked for me in the past.

    0 讨论(0)
  • 2021-02-19 02:10

    Do not use a UNC path for your project folder but map a drive letter instead.

    0 讨论(0)
  • 2021-02-19 02:12

    I got the same issue. I found, that the project with the control was not included in the solution (.sln file). Simple adding the project to the solution fixes the issue.

    0 讨论(0)
  • 2021-02-19 02:14

    Solved the same problem. Steps:

    • Update Visual Studio.
    • Close/open it.
    • Rebuild.
    0 讨论(0)
提交回复
热议问题