我想在一个WPF项目中继承一个控件类,加入一个属性依赖如下,但不知道如何新建类
有没有不需要建一个Button.cs,然后写上一大堆的代码的办法?publicclassButton:ButtonBase{publicstaticreadonlyDep...
有没有不需要建一个Button.cs,然后写上一大堆的代码的办法?
public class Button:ButtonBase
{
public static readonly DependencyProperty IsDefaultProperty;
static Button()
{
Button.IsDefaultProperty = DependencyProperty.Regiester("IsDefault",typeof(bool),typeof(Button)
new FrameworkPropertyMetadata(false,new PropertyChangedCallback(OnIsDefaultChanged)));
}
} 展开
public class Button:ButtonBase
{
public static readonly DependencyProperty IsDefaultProperty;
static Button()
{
Button.IsDefaultProperty = DependencyProperty.Regiester("IsDefault",typeof(bool),typeof(Button)
new FrameworkPropertyMetadata(false,new PropertyChangedCallback(OnIsDefaultChanged)));
}
} 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询