我正在尝试创建自定义控件,但我仍然收到错误:名称" CustomCircleControl"命名空间中不存在"使用:App8"
我的应用程序命名空间是App8,其中存在类CustomCircleControl。 错误出现在Generic.xaml文件中,但我不明白为什么。
<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:App8">
<Style TargetType="local:CustomCircleControl"> -- This line is marked by visual studio as error (The name "CustomCircleControl" does not exist in the namespace), but intelisence knows class CustomCircleControl.
感谢您的帮助: - )
答案 0 :(得分:1)
您正在声明命名空间错误。
在XAML中声明命名空间的正确方法如下:
xmlns:MyNamespace="clr-namespace:Your.Namespace.Here"
所以在你的情况下,它看起来像这样:
xmlns:local="clr-namespace:App8"