mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-12 03:22:32 +02:00
12 lines
353 B
C#
12 lines
353 B
C#
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);
|
|
}
|
|
}
|