// // Label.cs: Label control // // Authors: // Miguel de Icaza (miguel@gnome.org) // using System; using System.Collections.Generic; using System.Linq; using System.Text.RegularExpressions; using NStack; namespace Terminal.Gui { /// /// The Label displays a string at a given position and supports multiple lines separted by newline characters. Multi-line Labels support word wrap. /// /// /// The view is functionality identical to and is included for API backwards compatibilty. /// public class Label : View { /// public Label () { } /// public Label (Rect frame) : base (frame) { } /// public Label (ustring text) : base (text) { } /// public Label (Rect rect, ustring text) : base (rect, text) { } /// public Label (int x, int y, ustring text) : base (x, y, text) { } } }