namespace XFEExtension.NetCore.InputSimulator;
/// <summary>
/// 屏幕位置
/// </summary>
public enum ScreenPosition
{
/// <summary>
/// 左上角
/// </summary>
TopLeft,
/// <summary>
/// 右上角
/// </summary>
TopRight,
/// <summary>
/// 上方
/// </summary>
Top,
/// <summary>
/// 左边
/// </summary>
Left,
/// <summary>
/// 右边
/// </summary>
Right,
/// <summary>
/// 中心
/// </summary>
Center,
/// <summary>
/// 左下角
/// </summary>
BottomLeft,
/// <summary>
/// 下方
/// </summary>
Bottom,
/// <summary>
/// 右下角
/// </summary>
BottomRight
}
namespace XFEExtension.NetCore.InputSimulator;
/// <summary>
/// 屏幕位置
/// </summary>
public enum ScreenPosition
{
/// <summary>
/// 左上角
/// </summary>
TopLeft,
/// <summary>
/// 右上角
/// </summary>
TopRight,
/// <summary>
/// 上方
/// </summary>
Top,
/// <summary>
/// 左边
/// </summary>
Left,
/// <summary>
/// 右边
/// </summary>
Right,
/// <summary>
/// 中心
/// </summary>
Center,
/// <summary>
/// 左下角
/// </summary>
BottomLeft,
/// <summary>
/// 下方
/// </summary>
Bottom,
/// <summary>
/// 右下角
/// </summary>
BottomRight
}