Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StaticControls.cs « Controls « UVtools.WPF - github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3d0f9430de2a467971c383849fcc320d727d41e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
using Avalonia.Input;

namespace UVtools.WPF.Controls
{
    public static class StaticControls
    {
        public static Cursor ArrowCursor = new Cursor(StandardCursorType.Arrow);
        public static Cursor CrossCursor = new Cursor(StandardCursorType.Cross);
        public static Cursor HandCursor = new Cursor(StandardCursorType.Hand);
    }
}