我看到许多其他人在其他问题中询问此错误消息,但我似乎对自己解决此问题的方法了解不够。我通过 WPF UserControl 创建了这个错误
public partial class EnterNewRequest : UserControl
但后来我想向 UserControl 添加一个方法,所以我使用继承将它粘贴在那里(不能使用扩展,因为我需要覆盖这个方法)。但是现在我的用户控件很不高兴,我不确定我需要更改 xaml 中的哪些内容。UserControl 更改块位于命名空间 RCO_Manager 中。这是我的 xaml:
<UserControl x:Class="RCO_Manager.EnterNewRequest"
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"