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: 488891cc29a58f7e2c88f970a5f45bad99024954 (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(StandardCursorType.Arrow);
        public static Cursor CrossCursor = new(StandardCursorType.Cross);
        public static Cursor HandCursor = new(StandardCursorType.Hand);
    }
}