123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Media;
- namespace PDF_Master.CustomControl
- {
- public class ImageRadioButton : RadioButton
- {
- static ImageRadioButton()
- {
- DefaultStyleKeyProperty.OverrideMetadata(typeof(ImageRadioButton), new FrameworkPropertyMetadata(typeof(ImageRadioButton)));
- }
- public override void OnApplyTemplate()
- {
- base.OnApplyTemplate();
- if (this.MouseOverBackground == null)
- {
- this.MouseOverBackground = Background;
- }
- if (this.MouseDownBackground == null)
- {
- if (this.MouseOverBackground == null)
- {
- this.MouseDownBackground = Background;
- }
- else
- {
- this.MouseDownBackground = MouseOverBackground;
- }
- }
- if (this.MouseOverBorderBrush == null)
- {
- this.MouseOverBorderBrush = BorderBrush;
- }
- if (this.MouseDownBorderBrush == null)
- {
- if (this.MouseOverBorderBrush == null)
- {
- this.MouseDownBorderBrush = BorderBrush;
- }
- else
- {
- this.MouseDownBorderBrush = MouseOverBorderBrush;
- }
- }
- if (this.MouseOverForeground == null)
- {
- this.MouseOverForeground = Foreground;
- }
- if (this.MouseDownForeground == null)
- {
- if (this.MouseOverForeground == null)
- {
- this.MouseDownForeground = Foreground;
- }
- else
- {
- this.MouseDownForeground = this.MouseOverForeground;
- }
- }
- }
- #region 依赖项属性
- /// <summary>
- /// 鼠标移上去的背景颜色
- /// </summary>
- public static readonly DependencyProperty MouseOverBackgroundProperty
- = DependencyProperty.Register("MouseOverBackground", typeof(Brush), typeof(ImageRadioButton));
- /// <summary>
- /// 鼠标按下去的背景颜色
- /// </summary>
- public static readonly DependencyProperty MouseDownBackgroundProperty
- = DependencyProperty.Register("MouseDownBackground", typeof(Brush), typeof(ImageRadioButton));
- /// <summary>
- /// 鼠标移上去的字体颜色
- /// </summary>
- public static readonly DependencyProperty MouseOverForegroundProperty
- = DependencyProperty.Register("MouseOverForeground", typeof(Brush), typeof(ImageRadioButton), new PropertyMetadata(null, null));
- /// <summary>
- /// 鼠标按下去的字体颜色
- /// </summary>
- public static readonly DependencyProperty MouseDownForegroundProperty
- = DependencyProperty.Register("MouseDownForeground", typeof(Brush), typeof(ImageRadioButton), new PropertyMetadata(null, null));
- /// <summary>
- /// 鼠标移上去的边框颜色
- /// </summary>
- public static readonly DependencyProperty MouseOverBorderBrushProperty
- = DependencyProperty.Register("MouseOverBorderBrush", typeof(Brush), typeof(ImageRadioButton), new PropertyMetadata(null, null));
- /// <summary>
- /// 鼠标按下去的边框颜色
- /// </summary>
- public static readonly DependencyProperty MouseDownBorderBrushProperty
- = DependencyProperty.Register("MouseDownBorderBrush", typeof(Brush), typeof(ImageRadioButton), new PropertyMetadata(null, null));
- /// <summary>
- /// 圆角
- /// </summary>
- public static readonly DependencyProperty CornerRadiusProperty
- = DependencyProperty.Register("CornerRadius", typeof(CornerRadius), typeof(ImageRadioButton), null);
- //图标
- public static readonly DependencyProperty IconProperty
- = DependencyProperty.Register("Icon", typeof(ImageSource), typeof(ImageRadioButton), null);
- //鼠标移上去的图标图标
- public static readonly DependencyProperty IconMouseOverProperty
- = DependencyProperty.Register("IconMouseOver", typeof(ImageSource), typeof(ImageRadioButton), null);
- //鼠标按下去的图标图标
- public static readonly DependencyProperty IconPressProperty
- = DependencyProperty.Register("IconPress", typeof(ImageSource), typeof(ImageRadioButton), null);
- //选中的图标图标
- public static readonly DependencyProperty IconCheckedProperty
- = DependencyProperty.Register("IconChecked", typeof(ImageSource), typeof(ImageRadioButton), null);
- //图标高度
- public static readonly DependencyProperty IconHeightProperty
- = DependencyProperty.Register("IconHeight", typeof(double), typeof(ImageRadioButton), new PropertyMetadata(24.0, null));
- //图标宽度
- public static readonly DependencyProperty IconWidthProperty
- = DependencyProperty.Register("IconWidth", typeof(double), typeof(ImageRadioButton), new PropertyMetadata(24.0, null));
- //图标和内容的对齐方式
- public static readonly DependencyProperty IconContentOrientationProperty
- = DependencyProperty.Register("IconContentOrientation", typeof(Orientation), typeof(ImageRadioButton), new PropertyMetadata(Orientation.Horizontal, null));
- //图标和内容的距离
- public static readonly DependencyProperty IconContentMarginProperty
- = DependencyProperty.Register("IconContentMargin", typeof(Thickness), typeof(ImageRadioButton), new PropertyMetadata(new Thickness(0, 0, 0, 0), null));
- #endregion
- #region 属性包装
- public Brush MouseOverBackground
- {
- get
- {
- return (Brush)GetValue(MouseOverBackgroundProperty);
- }
- set { SetValue(MouseOverBackgroundProperty, value); }
- }
- public Brush MouseDownBackground
- {
- get
- {
- return (Brush)GetValue(MouseDownBackgroundProperty);
- }
- set { SetValue(MouseDownBackgroundProperty, value); }
- }
- public Brush MouseOverForeground
- {
- get
- {
- return (Brush)GetValue(MouseOverForegroundProperty);
- }
- set { SetValue(MouseOverForegroundProperty, value); }
- }
- public Brush MouseDownForeground
- {
- get
- {
- return (Brush)GetValue(MouseDownForegroundProperty);
- }
- set { SetValue(MouseDownForegroundProperty, value); }
- }
- public Brush MouseOverBorderBrush
- {
- get { return (Brush)GetValue(MouseOverBorderBrushProperty); }
- set { SetValue(MouseOverBorderBrushProperty, value); }
- }
- public Brush MouseDownBorderBrush
- {
- get { return (Brush)GetValue(MouseDownBorderBrushProperty); }
- set { SetValue(MouseDownBorderBrushProperty, value); }
- }
- public CornerRadius CornerRadius
- {
- get { return (CornerRadius)GetValue(CornerRadiusProperty); }
- set { SetValue(CornerRadiusProperty, value); }
- }
- public ImageSource Icon
- {
- get { return (ImageSource)GetValue(IconProperty); }
- set { SetValue(IconProperty, value); }
- }
- public ImageSource IconMouseOver
- {
- get { return (ImageSource)GetValue(IconMouseOverProperty); }
- set { SetValue(IconMouseOverProperty, value); }
- }
- public ImageSource IconPress
- {
- get { return (ImageSource)GetValue(IconPressProperty); }
- set { SetValue(IconPressProperty, value); }
- }
- public ImageSource IconChecked
- {
- get { return (ImageSource)GetValue(IconCheckedProperty); }
- set { SetValue(IconCheckedProperty, value); }
- }
- public double IconHeight
- {
- get { return (double)GetValue(IconHeightProperty); }
- set { SetValue(IconHeightProperty, value); }
- }
- public double IconWidth
- {
- get { return (double)GetValue(IconWidthProperty); }
- set { SetValue(IconWidthProperty, value); }
- }
- public Orientation IconContentOrientation
- {
- get { return (Orientation)GetValue(IconContentOrientationProperty); }
- set { SetValue(IconContentOrientationProperty, value); }
- }
- public Thickness IconContentMargin
- {
- get { return (Thickness)GetValue(IconContentMarginProperty); }
- set { SetValue(IconContentMarginProperty, value); }
- }
- #endregion
- }
- }
|