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.

34 lines
915 B
C#

namespace GeoSigma.SigmaDrawerStyle
{
using System.ComponentModel;
using System.Xml.Serialization;
/// <summary>
/// Defines the <see cref="CurveArrowTail" />.
/// </summary>
[XmlRoot("ArrowTail")]
public class CurveArrowTail : CurveView
{
/// <summary>
/// Initializes a new instance of the <see cref="CurveArrowTail"/> class.
/// </summary>
public CurveArrowTail()
{
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; }
}
}