注释掉 XML

发布于 2024-10-21 03:47:29 字数 418 浏览 1 评论 0原文

考虑一下这段 XML:

<ListBox x:Name="pictureBox"
                ItemsSource="{Binding}"
                 MouseDoubleClick="item_DoubleClick"
>

有没有办法注释掉 MouseDoubleClick="item_DoubleClick"?这次尝试失败了:

<ListBox x:Name="pictureBox"
                ItemsSource="{Binding}"
                <!-- MouseDoubleClick="item_DoubleClick"-->
>

Consider this piece of XML:

<ListBox x:Name="pictureBox"
                ItemsSource="{Binding}"
                 MouseDoubleClick="item_DoubleClick"
>

Is there any way to comment out MouseDoubleClick="item_DoubleClick"? This attempt fails:

<ListBox x:Name="pictureBox"
                ItemsSource="{Binding}"
                <!-- MouseDoubleClick="item_DoubleClick"-->
>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

转身以后 2024-10-28 03:47:29

您可以注释掉整个元素,这将起作用,并在其下方放置不带该属性的修改版本。

You could just comment out the whole element, which would work, and underneath it put the modified version without that attribute.

扭转时空 2024-10-28 03:47:29

不,这不是你必须删除它。元素声明内不能有注释。由于附加的“<”,解析器根本无法解析该 XML。在 ListBox 元素的 open 声明内签名。

No it's not you'll have to remove it. You cannot have comments inside the declaration of an Element. It would not be possible for the parser to parse this XML at all because of the additional "<" sign inside the open declaration of ListBox Element.

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