【发布时间】:2022-01-17 09:13:31
【问题描述】:
我想创建一个评论标签以在我的 XAML 中使用,以便我可以评论它。 (为什么没有现成的内置方法来做到这一点让我感到困惑。)
下面的代码sn-p编译失败,报错:
*Error 'mc:Ignorable' is a duplicate attribute name. Line 9, position 7. TriCoordinate Math*
任何帮助将不胜感激。
<Page x:Class="TriCoordinate_Math.Views.GraphingPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:Comment="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
Style="{StaticResource PageStyle}"
mc:Ignorable="Comment"
mc:Ignorable="d">
【问题讨论】: