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