WPF xmlns:“clr 命名空间” URI 引用未包含在程序集中的命名空间
我正在学习 xaml 中的数据绑定,这个 xmlns 问题阻止了我。我的 cs 代码位于命名空间“Ping”中。这是我的 MainWindow.xaml:
<Window x:Class="Ping.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:custom="clr-namespace:WPFDemo;assembly=WPFDemo"
xmlns:local="clr-namespace:Ping"
最后一行抱怨如标题所示。为什么它不起作用?我正在使用“Ping”,它是我获得的唯一命名空间。
谢谢
I am learning data binding in xaml and this xmlns problem is stopping me. My cs code is in namespace "Ping". Here is my MainWindow.xaml:
<Window x:Class="Ping.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:custom="clr-namespace:WPFDemo;assembly=WPFDemo"
xmlns:local="clr-namespace:Ping"
The last line complains as in the title. Why is it not working? I am using "Ping" and it's the only namespace I got.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果
Ping
是您正在使用的唯一命名空间,则应删除对WPFDemo
的引用If
Ping
is the only namespace you're using, you should remove the reference toWPFDemo