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