我用自己的用户控件编写了一些 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"/>。我仍然收到此警告。你有什么想法吗?