mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
26 lines
579 B
C#
26 lines
579 B
C#
using System.Runtime.InteropServices;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SDRSharp.PanView
|
|
{
|
|
[StructLayout(LayoutKind.Sequential, Size = 1)]
|
|
public struct Mouses
|
|
{
|
|
public static Cursor Passband = Cursors.Hand;
|
|
|
|
public static Cursor Spectrum = Cursors.Cross;
|
|
|
|
public static Cursor ChangeBW = Cursors.VSplit;
|
|
|
|
public static Cursor RangeUp = Cursors.PanEast;
|
|
|
|
public static Cursor RangeDown = Cursors.PanWest;
|
|
|
|
public static Cursor Scale = Cursors.HSplit;
|
|
|
|
public static Cursor Static = Cursors.Cross;
|
|
|
|
public static Cursor StationList = Cursors.Default;
|
|
}
|
|
}
|