AnimationButton.cs 740 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Windows;
  6. using System.Windows.Controls.Primitives;
  7. namespace CustomUI
  8. {
  9. public class AnimationButton : ToggleButton
  10. {
  11. #region Private属性
  12. #endregion
  13. #region 依赖属性定义
  14. #endregion
  15. #region 依赖属性set get
  16. #endregion
  17. #region Constructors
  18. static AnimationButton()
  19. {
  20. DefaultStyleKeyProperty.OverrideMetadata(typeof(AnimationButton), new FrameworkPropertyMetadata(typeof(AnimationButton)));
  21. }
  22. #endregion
  23. #region Override方法
  24. #endregion
  25. #region Private方法
  26. #endregion
  27. }
  28. }