mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
21 lines
282 B
C#
21 lines
282 B
C#
using System;
|
|
|
|
namespace SDRSharp.PanView
|
|
{
|
|
public class PositionEventArgs : EventArgs
|
|
{
|
|
public float Xpos;
|
|
|
|
public float Ypos;
|
|
|
|
public bool Trig;
|
|
|
|
public PositionEventArgs(float x, float y, bool trig)
|
|
{
|
|
this.Xpos = x;
|
|
this.Ypos = y;
|
|
this.Trig = trig;
|
|
}
|
|
}
|
|
}
|