You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
727 B
32 lines
727 B
3 years ago
|
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
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 画图形状
|
||
|
/// </summary>
|
||
|
public DrawTypes DrawType { get; set; }
|
||
|
/// <summary>
|
||
|
/// 预警级别
|
||
|
/// </summary>
|
||
|
public int WarningLevel { get; set; }
|
||
|
/// <summary>
|
||
|
/// 线 时方向
|
||
|
/// </summary>
|
||
|
public int WaringDirection { get; set; }
|
||
|
|
||
|
public StrokeEx(StylusPointCollection stylusPoints) : base(stylusPoints)
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|