23 lines
498 B
C#
23 lines
498 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LabelSharp.Config
|
|
{
|
|
public static class CustomCursors
|
|
{
|
|
|
|
public static Cursor CURSOR_DEFAULT = Cursors.Arrow;
|
|
public static Cursor CURSOR_POINT = Cursors.Hand;
|
|
public static Cursor CURSOR_DRAW = Cursors.Cross;
|
|
public static Cursor CURSOR_MOVE = Cursors.Hand;
|
|
public static Cursor CURSOR_GRAB = Cursors.Hand;
|
|
|
|
|
|
|
|
|
|
}
|
|
}
|