我正在尝试将 x:Name 属性设置为 UserControl 的定义,以便稍后将其用于内部绑定:
<UserControl
x:Name="root"
x:Class="ElementManager.UserControl1"
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">
</UserControl>
它没有编译说:
“ElementManager.ElementManager”类型中不存在类型名称“UserControl1”
如果我删除 x:Name 属性,它会编译并且一切正常。这是故意的还是我错过了一些微不足道的事情?