<!--这个地方,把WPF图形库作为了c命名前缀,而.net库基本库作为了默认命名空间,如何才能让Class属性不报错呢?-->
<c:Window Class="从零起步认识XAML.MainWindow"
xmlns:c="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<c:Grid Background="LightBlue">
</c:Grid>
</c:Window>
<c:Window x:class="从零起步认识XAML.MainWindow"
xmlns:c="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="MainWindow" Height="350" Width="525">
<c:Grid Background="LightBlue">
</c:Grid>
</c:Window>
其实这是一个XML的问题,和WPF无关,这是一个困惑我很久的问题,标签是有名字的命名空间,而标签要用一个默认命名空间的属性,这种情况应该怎么办?