CPF/CPF.ReoGrid/Interaction/MouseButtons.cs
2024-06-24 10:15:59 +08:00

13 lines
152 B
C#

using System;
namespace CPF.ReoGrid.Interaction
{
public enum MouseButtons
{
None,
Left = 1048576,
Right = 2097152,
Middle = 4194304
}
}