依赖属性的实现
public class ButtonTest : ButtonBase { //依赖属性 public static readonly DependencyProperty IsDefaultProperty; public bool IsDefault { get { return (bool)GetValue(ButtonTest.IsDefaultProperty); } set { SetValue(ButtonTest.IsDefaultProperty,value); } } static ButtonTest() { //注册属性 ButtonTest.IsDefaultProperty = DependencyProperty.Register("IsDefault",typeof(bool),typeof(ButtonTest),new FrameworkPropertyMetadata(false,new PropertyChangedCallback(IsDefaultChanged))); } /// <summary> /// 属性改变时操作 /// </summary> /// <param name="o"></param> /// <param name="e"></param> private static void IsDefaultChanged(DependencyObject o,DependencyPropertyChangedEventArgs e) { } }以后补充 原文链接:https://www.f2er.com/javaschema/286901.html