14 lines
231 B
C#
14 lines
231 B
C#
namespace Decal.Adapter;
|
|
|
|
public class TextBoxChangeEventArgs : ControlEventArgs
|
|
{
|
|
private string text;
|
|
|
|
public string Text => text;
|
|
|
|
internal TextBoxChangeEventArgs(int ID, string text)
|
|
: base(ID)
|
|
{
|
|
this.text = text;
|
|
}
|
|
}
|