wpf自定义控件-单/双箭头线

using System;

using System.ComponentModel;

using System.Windows;

using System.Windows.Controls;

using System.Windows.Media;

using System.Windows.Shapes;

namespace CustomControls

{

[TypeDescriptionProvider(typeof(CustomTypeDescriptionProvider))]

public class CustomArrow : Shape

{

public CustomArrow ()

{

Stroke= new SolidColorBrush(Color.FromRgb(0, 140, 206));

}

#region Dependency Properties

    public static readonly DependencyProperty X1Property = DependencyProperty.Register("X1", typeof(double), typeof(BvArrow), new FrameworkPropertyMetadata(0.0, FrameworkPropertyMetadataOptions.AffectsRender | FrameworkPropertyMetadataOptions.AffectsMeasure));
    public static readonly DependencyProperty Y1Property = DependencyProperty.Register("Y1", typeof(double), typeof(BvArrow), new FrameworkPropertyMetadata(0.0, FrameworkPropertyMetadataOptions.AffectsRender | FrameworkPropertyMetadataOptions.AffectsMeasure));
    public static readonly DependencyProperty X2Property = DependencyProperty.Register("X2", typeof(double), typeof(BvArrow), new FrameworkPropertyMetadata(150.0, FrameworkPropertyMetadataOptions.AffectsRender | FrameworkPropertyMetadataOptions.AffectsMeasure));
    public static readonly DependencyProperty Y2Property = DependencyProperty.Register("Y2", typeof(double), typeof(BvArrow), new FrameworkPropertyMetadata(0.0, FrameworkPropertyMetadataOptions.AffectsRender | FrameworkPropertyMetadataOptions.AffectsMeasure));
    public static readonly DependencyProperty HeadWidthProperty = DependencyProperty.Register("HeadWidth", typeof(double), typeof(BvArrow), new FrameworkPropertyMetadata(15.0, FrameworkPropertyMetadataOptions.AffectsRender | FrameworkPropertyMetadataOptions.AffectsMeasure));
    public static readonly DependencyProperty HeadHeightProperty = DependencyProperty.Register("HeadHeight", typeof(double), typeof(BvArrow), new FrameworkPropertyMetadata(5.0, FrameworkPropertyMetadataOptions.AffectsRender | FrameworkPropertyMetadataOptions.AffectsMeasure));
    public static readonly DependencyProperty IsBidirectionalProperty = DependencyProperty.Register("IsBidirectional", typeof(bool), typeof(BvArrow), new FrameworkPropertyMetadata(false, FrameworkPropertyMetadataOptions.AffectsRender | FrameworkPropertyMetadataOptions.AffectsMeasure));

    #endregion

    #region CLR Properties
    [Browsable(true)]
    public bool IsBidirectional
    {
        get
        {
            return (bool)GetValue(IsBidirectionalProperty);
        }
        set
        {
            SetValue(IsBidirectionalProperty, value);
        }
    }

    [Browsable(true)]
    public new Brush Stroke
    {
        get 
        { 
            return (Brush)GetValue(StrokeProperty); 
        }
        set
        {
            SetValue(StrokeProperty, value);
        }
    }
    [Browsable(true)]
    [TypeConverter(typeof(LengthConverter))]
    public new double StrokeThickness
    {
        get
        {
            return (double)GetValue(StrokeThicknessProperty);
        }
        set
        {
            SetValue(StrokeThicknessProperty, value);
        }
    }

    [Browsable(true)]
    [TypeConverter(typeof(LengthConverter))]
    public double X1
    {
        get { return (double)base.GetValue(X1Property); }
        set { base.SetValue(X1Property, value); }
    }

    [Browsable(true)]
    [TypeConverter(typeof(LengthConverter))]
    public double Y1
    {
        get { return (double)base.GetValue(Y1Property); }
        set { base.SetValue(Y1Property, value); }
    }

    [Browsable(true)]
    [TypeConverter(typeof(LengthConverter))]
    public double X2
    {
        get { return (double)base.GetValue(X2Property); }
        set { base.SetValue(X2Property, value); }
    }

    [Browsable(true)]
    [TypeConverter(typeof(LengthConverter))]
    public double Y2
    {
        get { return (double)base.GetValue(Y2Property); }
        set { base.SetValue(Y2Property, value); }
    }

    [Browsable(true)]
    [TypeConverter(typeof(LengthConverter))]
    public double HeadWidth
    {
        get { return (double)base.GetValue(HeadWidthProperty); }
        set { base.SetValue(HeadWidthProperty, value); }
    }

    [Browsable(true)]
    [TypeConverter(typeof(LengthConverter))]
    public double HeadHeight
    {
        get { return (double)base.GetValue(HeadHeightProperty); }
        set { base.SetValue(HeadHeightProperty, value); }
    }

    #endregion

    #region Overrides

    protected override Geometry DefiningGeometry
    {
        get
        {
            // Create a StreamGeometry for describing the shape
            StreamGeometry geometry = new StreamGeometry();
            geometry.FillRule = FillRule.EvenOdd;

            using (StreamGeometryContext context = geometry.Open())
            {
                InternalDrawArrowGeometry(context);
            }

            // Freeze the geometry for performance benefits
            geometry.Freeze();

            return geometry;
        }
    }

    #endregion

    #region Privates

    private void InternalDrawArrowGeometry(StreamGeometryContext context)
    {
        double theta = Math.Atan2(Y1 - Y2, X1 - X2);
        double sint = Math.Sin(theta);
        double cost = Math.Cos(theta);

        Point pt1 = new Point(X1, this.Y1);
        Point pt2 = new Point(X2, this.Y2);
        if(IsBidirectional)
        {
            Point pt3 = new Point(
             X1 - (HeadWidth * cost - HeadHeight * sint),
             Y1 - (HeadWidth * sint + HeadHeight * cost));

            Point pt4 = new Point(
                X1 - (HeadWidth * cost + HeadHeight * sint),
                Y1 + (HeadHeight * cost - HeadWidth * sint));

            Point pt5 = new Point(
            X2 + (HeadWidth * cost - HeadHeight * sint),
            Y2 + (HeadWidth * sint + HeadHeight * cost));

            Point pt6 = new Point(
                X2 + (HeadWidth * cost + HeadHeight * sint),
                Y2 - (HeadHeight * cost - HeadWidth * sint));

            context.BeginFigure(pt1, true, false);
            context.LineTo(pt3, true, true);
            context.LineTo(pt1, false, true);
            context.LineTo(pt4, false, true);
            context.LineTo(pt1, true, true);
            context.LineTo(pt2, true, true);
            context.LineTo(pt5, true, true);
            context.LineTo(pt2, false, true);
            context.LineTo(pt6, true, true);
        }
        else
        {
            Point pt3 = new Point(
            X2 + (HeadWidth * cost - HeadHeight * sint),
            Y2 + (HeadWidth * sint + HeadHeight * cost));

            Point pt4 = new Point(
                X2 + (HeadWidth * cost + HeadHeight * sint),
                Y2 - (HeadHeight * cost - HeadWidth * sint));

            context.BeginFigure(pt1, true, false);
            context.LineTo(pt2, true, true);
            context.LineTo(pt3, true, true);
            context.LineTo(pt2, false, true);
            context.LineTo(pt4, true, true);
        }
    }
    #endregion
}

}

相关推荐
△曉風殘月〆8 小时前
在WPF中保存控件内容为图片
wpf
芝麻科技9 小时前
Wpf使用NLog将日志输出到LogViewer
wpf·prism
△曉風殘月〆1 天前
WPF颜色(SolidColorBrush)和Win32颜色(COLOREF)互转的方法
wpf·win32·solidcolorbrush·colorref
shanshan20991 天前
上位机系统架构 | 如何设计一个高效的多相机管理系统
c#·wpf·相机
充值内卷1 天前
WPF入门教学四 WPF控件概述
windows·ui·wpf
小白2 天前
WPF自定义Dialog模板,内容用不同的Page填充
wpf
Crazy Struggle3 天前
C# + WPF 音频播放器 界面优雅,体验良好
c#·wpf·音频播放器·本地播放器
James.TCG3 天前
WPF动画
wpf
He BianGu3 天前
笔记:简要介绍WPF中FormattedText是什么,主要有什么功能
笔记·c#·wpf
脚步的影子4 天前
.NET 6.0 + WPF 使用 Prism 框架实现导航
.net·wpf