我在网上发现时使用了以下语法,但是会引发错误:
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
<!-- Cool comment -->
xmlns:System="clr-namespace:System;assembly=mscorlib"
'名称不能以'<'字符开头,十六进制值0x3C。第4行,位置5。XML无效。
我在网上发现时使用了以下语法,但是会引发错误:
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
<!-- Cool comment -->
xmlns:System="clr-namespace:System;assembly=mscorlib"
'名称不能以'<'字符开头,十六进制值0x3C。第4行,位置5。XML无效。
Answers:
我假设那些XAML名称空间声明在控件的父标记中?您不能将评论放在另一个标签内。除此之外,您使用的语法是正确的。
<UserControl xmlns="...">
<!-- Here's a valid comment. Notice it's outside the <UserControl> tag's braces -->
[..snip..]
</UserControl>
由Laurent Bugnion找到了一个不错的解决方案,它看起来像这样:
<UserControl xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:comment="Tag to add comments"
mc:Ignorable="d comment" d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<Button Width="100"
comment:Width="example comment on Width, will be ignored......">
</Button>
</Grid>
</UserControl>
这是链接:http : //blog.galasoft.ch/posts/2010/02/quick-tip-commenting-out-properties-in-xaml/
链接上的评论者为忽略前缀提供了额外的字符,而不是突出显示:
mc:Ignorable=”ØignoreØ”
-- SGML comment --
样式适用于内部标记注释。但是,不,有99.44%的XAML解析器不接受SGML标签内注释。
您不能在xml标记内插入注释。
坏
<Window xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
<!-- Cool comment -->
xmlns:System="clr-namespace:System;assembly=mscorlib">
好
<Window xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:System="clr-namespace:System;assembly=mscorlib">
<!-- Cool comment -->
提示:
在Visual Studio进行评论一文中,您可以突出显示要注释的文本,然后用按Ctrl + K,然后按Ctrl + C。取消注释,你可以使用Ctrl键+ K,然后按Ctrl + U。
您不能在UWP XAML标记内添加注释。您的语法正确。
去做:
<xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:System="clr-namespace:System;assembly=mscorlib"/>
<!-- Cool comment -->
请勿做:
<xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
<!-- Cool comment -->
xmlns:System="clr-namespace:System;assembly=mscorlib"/>
对于学习这些东西的人来说,注释更为重要,因此请借鉴Xak Tacit的想法
(来自User500099的链接)获取“单个属性”注释,然后将其添加到XAML代码块的顶部:
<!--Comments Allowed With Markup Compatibility (mc) In XAML!
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ØignoreØ="http://www.galasoft.ch/ignore"
mc:Ignorable="ØignoreØ"
Usage in property:
ØignoreØ:AttributeToIgnore="Text Of AttributeToIgnore"-->
然后在代码块中
<Application FooApp:Class="Foo.App"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:ØignoreØ="http://www.galasoft.ch/ignore"
mc:Ignorable="ØignoreØ"
...
AttributeNotToIgnore="TextNotToIgnore"
...
...
ØignoreØ:IgnoreThisAttribute="IgnoreThatText"
...
>
</Application>