mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
46 lines
493 B
C#
46 lines
493 B
C#
using System;
|
|
|
|
namespace SDRSharp.PanView
|
|
{
|
|
public class NotchEventArgs : EventArgs
|
|
{
|
|
public int Notch
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int Offset
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public int Width
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool Active
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public bool Cancel
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
public NotchEventArgs(int notch, int offset, int width, bool active)
|
|
{
|
|
this.Notch = notch;
|
|
this.Offset = offset;
|
|
this.Width = width;
|
|
this.Active = active;
|
|
}
|
|
}
|
|
}
|