mirror of
https://github.com/SDRSharpR/SDRSharper.git
synced 2025-12-06 04:12:02 +01:00
26 lines
322 B
C#
26 lines
322 B
C#
|
|
using System;
|
||
|
|
using System.Drawing;
|
||
|
|
|
||
|
|
namespace SDRSharp.FrequencyScanner
|
||
|
|
{
|
||
|
|
public class CustomPaintEventArgs : EventArgs
|
||
|
|
{
|
||
|
|
public Graphics Graphics
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
private set;
|
||
|
|
}
|
||
|
|
|
||
|
|
public bool Cancel
|
||
|
|
{
|
||
|
|
get;
|
||
|
|
set;
|
||
|
|
}
|
||
|
|
|
||
|
|
public CustomPaintEventArgs(Graphics graphics)
|
||
|
|
{
|
||
|
|
this.Graphics = graphics;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|