// // TextField.cs: single-line text editor with Emacs keybindings // // Authors: // Miguel de Icaza (miguel@gnome.org) // using System; using System.Text; namespace Terminal.Gui { /// /// Event args for the event /// public class TextChangedEventArgs : EventArgs { /// /// Creates a new instance of the class /// /// public TextChangedEventArgs (string oldValue) { OldValue = oldValue; } /// /// The old value before the text changed /// public string OldValue { get; } } }