RaUI/Source/ryControls/ExtendedWebBrowser/TextChangedEventArgs.cs

21 lines
310 B
C#
Raw Normal View History

2020-11-28 07:03:28 +00:00
using System;
using System.Collections.Generic;
using System.Text;
namespace ExtendedWebBrowser2
{
class TextChangedEventArgs : EventArgs
{
public TextChangedEventArgs(string text)
{
_text = text;
}
string _text;
public string Text
{
get { return _text; }
}
}
}