The tag 'XXX' does not exist in XML namespace 'clr-namespace:YYY'

前端 未结 10 996
渐次进展
渐次进展 2021-02-07 11:59

I have implemented a converter to convert Int32 to String to be able to binding a property to a textBox.

I implement this converter in the namespace MyApp.Converters and

10条回答
  •  误落风尘
    2021-02-07 12:24

    I see two possible causes. The first is that you misspelled "assembly" as "aseembly" in the first starred line. Changing the spelling might be enough. The second possibility is that you haven't added MyApp.dll to your project references, which appear like this

    enter image description here

    in Visual Studio.

提交回复
热议问题