mirror of
https://github.com/riegera2412/UVtools.git
synced 2026-07-11 19:12:31 +02:00
c43badb9c1
- (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
12 lines
332 B
C#
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);
|
|
}
|
|
}
|