14 lines
230 B
C#
14 lines
230 B
C#
namespace Decal.Adapter;
|
|
|
|
public class CheckBoxChangeEventArgs : ControlEventArgs
|
|
{
|
|
private bool check;
|
|
|
|
public bool Checked => check;
|
|
|
|
internal CheckBoxChangeEventArgs(int ID, bool Check)
|
|
: base(ID)
|
|
{
|
|
check = Check;
|
|
}
|
|
}
|