6 types derived from TextControl
System.Web.Mobile (6)
UI\MobileControls\BaseValidator.cs (1)
40public abstract class BaseValidator : TextControl, IValidator
UI\MobileControls\Command.cs (1)
40public class Command : TextControl, IPostBackEventHandler, IPostBackDataHandler
UI\MobileControls\Label.cs (1)
37public class Label : TextControl
UI\MobileControls\Link.cs (1)
38public class Link : TextControl, IPostBackEventHandler
UI\MobileControls\PhoneCall.cs (1)
41public class PhoneCall : TextControl, IPostBackEventHandler
UI\MobileControls\TextBox.cs (1)
42public class TextBox : TextControl, IPostBackDataHandler
11 references to TextControl
System.Web.Mobile (11)
UI\MobileControls\Adapters\HtmlLabelAdapter.cs (2)
34protected new TextControl Control 38return (TextControl)base.Control;
UI\MobileControls\Adapters\WmlLabelAdapter.cs (2)
34protected new TextControl Control 38return (TextControl)base.Control;
UI\MobileControls\Design\MobileControlDesigner.cs (7)
365if ((_mobileControl is TextControl || _mobileControl is TextView) 376if (_mobileControl is TextControl) 378originalText = ((TextControl)_mobileControl).Text; 379((TextControl)_mobileControl).Text = String.Empty; 400if (_mobileControl is TextControl) 402((TextControl)_mobileControl).Text = originalText; 469if ((_mobileControl is TextControl || _mobileControl is TextView)