mirror of
https://gitee.com/csharpui/CPF.git
synced 2026-02-27 06:03:10 +08:00
16 lines
263 B
C#
16 lines
263 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace CPF.Input
|
|
{
|
|
/// <summary>
|
|
/// 指定可能的鼠标按钮状态。
|
|
/// </summary>
|
|
public enum MouseButtonState : byte
|
|
{
|
|
Released,
|
|
Pressed
|
|
}
|
|
}
|