我用自己的用户控件编写了一些WPF应用程序。这是XAML代码
<UserControl x:Class="wpfUserCtrl.Controls.MyControl"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid Background="{DynamicResource {x:Static SystemColors.ActiveCaptionBrushKey}}" Margin="0,0,0,197">
<Label Name="lblText">My own text</Label>
</Grid>
</UserControl>
我把它放在MainWindow.xaml中,这是代码
<Window x:Class="wpfUserCtrl.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:ctrl="clr-namespace:wpfUserCtrl.Controls"
Title="MainWindow" Height="350" Width="525">
<Grid>
<ctrl:MyControl Name="sad"></ctrl:MyControl>
</Grid>
</Window>
但是我收到警告:“找不到元素的关闭标记”。为什么?有结束标签。当我使用ctrl:MyControl Name =“sad”/&gt;。我仍然得到这个警告。你知道吗?