WPF xmlns:“clr 命名空间” URI 引用未包含在程序集中的命名空间

发布于 2024-11-30 16:15:36 字数 437 浏览 1 评论 0原文

我正在学习 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

椒妓 2024-12-07 16:15:36

如果 Ping 是您正在使用的唯一命名空间,则应删除对 WPFDemo 的引用

If Ping is the only namespace you're using, you should remove the reference to WPFDemo

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文