You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.0 KiB
C#

// <copyright file="CurveArrowHead.cs" company="PlaceholderCompany">
// Copyright (c) PlaceholderCompany. All rights reserved.
// </copyright>
namespace GeoSigma.SigmaDrawerStyle
{
using System.ComponentModel;
using System.Xml.Serialization;
/// <summary>
/// Defines the <see cref="CurveArrowHead" />.
/// </summary>
[XmlRoot("ArrowHead")]
public class CurveArrowHead : CurveView
{
/// <summary>
/// Initializes a new instance of the <see cref="CurveArrowHead"/> class.
/// </summary>
public CurveArrowHead()
{
TypeName = "首箭头";
}
/// <summary>
/// Defines the height.
/// </summary>
private double height = 35;
/// <summary>
/// Gets or sets the Height.
/// </summary>
[XmlAttribute("Height")]
[Category("基本属性"), DisplayName("高度")]
[TypeConverter(typeof(PropertyDoubleConverter))]
public double Height { get => height; set => height = value; }
}
}