我需要所有用户控件都具有一些类似的功能。所以我的用户控制它是:
using System.Windows.Controls;
namespace WpfApplication26
{
/// <summary>
/// Interaction logic for UserControl1.xaml
/// </summary>
public partial class UserControl1 : UserControl
{
public UserControl1()
{
InitializeComponent();
}
}
}
好吧,现在我想让控件继承自我拥有所有功能的基类,因此我现在有类似的东西:
我发布了一张图片,向您展示我得到的错误。 UserControl1应该能够从DraggableControl继承,因为DraggableControl继承自UserControl。我不明白为什么visual studio不让我编译那段代码。