SDRSharper/SDRSharper.PanView/SDRSharp.PanView/GradientEventArgs.cs
SDRSharpR c07e6e6034 SDRSharper (SDRSharp Remake) Full Source (VS2017)
SDRSharper (SDRSharp Remake) Full Source (VS2017)
2018-03-26 14:02:05 -07:00

31 lines
509 B
C#

using System;
using System.Drawing.Drawing2D;
namespace SDRSharp.PanView
{
public class GradientEventArgs : EventArgs
{
public string Parent;
public int Index;
public ColorBlend Blend;
public int Back;
public int Trace;
public int Fill;
public GradientEventArgs(string parent, int index, ColorBlend blend, int back, int trace, int fill)
{
this.Parent = parent;
this.Index = index;
this.Blend = blend;
this.Back = back;
this.Trace = trace;
this.Fill = fill;
}
}
}