XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

XFEExtension.NetCore.InputSimulator

【DLL】XFE各类拓展的模拟键盘输入

公开
关注 0 Fork 0 Star 0
UTF-8
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
}