Files
UVtools/UVtools.WPF/Controls/StaticControls.cs
T
Tiago Conceição c43badb9c1 v2.12.1
- (Upgrade) AvaloniaUI from 0.10.4 to 0.10.5
- (Improvement) VDT: Implement a new key for better auto convert files between with latest version of Tango
- (Change) Exposure time finder: Bar fence offset from 2px to 4px
2021-05-19 21:42:07 +01:00

12 lines
332 B
C#

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);
}
}