using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Ink; using System.Windows.Input; namespace ECMonitor.PlayerDraw.Code { public class StrokeEx: Stroke { /// /// 画图形状 /// public DrawTypes DrawType { get; set; } /// /// 预警级别 /// public int WarningLevel { get; set; } /// /// 线 时方向 /// public int WaringDirection { get; set; } public StrokeEx(StylusPointCollection stylusPoints) : base(stylusPoints) { } } }