using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml.Serialization; namespace PaintDotNet.Base.SettingModel { /// /// 晶粒度(仲裁法)测量点样式 /// [XmlRoot("ROOT")] public class ArbitrationLawCutOffPointModel { /// /// 0.5截点样式 /// [XmlElement("CutOffPointStyle1")] public CutOffPointStyle CutOffPointStyle1 { get; set; } /// /// 1截点样式 /// [XmlElement("CutOffPointStyle2")] public CutOffPointStyle CutOffPointStyle2 { get; set; } #region 测量点样式 /// /// 测量点样式 /// public class CutOffPointStyle { /// /// 颜色 /// public int pointColor { get; set; } /// /// 线宽 /// public int pointWidth { get; set; } /// /// 点样式 0:空心 1:实心 /// public int pointStyle { get; set; } /// /// 大小 /// public int pointDiameter { get; set; } /// /// 截点误差 /// public int pointError { get; set; } /// /// 形状 0:圆形 1:方形 /// public int pointshape { get; set; } } #endregion } }