mirror of
https://github.com/SDRSharpR/SDRSharp.git
synced 2025-12-06 03:42:01 +01:00
19 lines
344 B
C#
19 lines
344 B
C#
using System;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SDRSharp.FrequencyEdit
|
|
{
|
|
public class FrequencyEditDigitClickEventArgs
|
|
{
|
|
public FrequencyEditDigitClickEventArgs(bool isUpperHalf, MouseButtons button)
|
|
{
|
|
this.IsUpperHalf = isUpperHalf;
|
|
this.Button = button;
|
|
}
|
|
|
|
public bool IsUpperHalf;
|
|
|
|
public MouseButtons Button;
|
|
}
|
|
}
|