33 lines
524 B
C#
33 lines
524 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace XKRS.UI
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// 点击的区域
|
|||
|
/// </summary>
|
|||
|
internal enum ClickArea
|
|||
|
{
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 未知区域
|
|||
|
/// </summary>
|
|||
|
AREA_UNKNOW,
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 图片区域
|
|||
|
/// </summary>
|
|||
|
AREA_IMG,
|
|||
|
|
|||
|
|
|||
|
/// <summary>
|
|||
|
/// 缺陷元素区域
|
|||
|
/// </summary>
|
|||
|
AREA_DEFECT,
|
|||
|
}
|
|||
|
}
|