1 write to _textBox
System.Web.Mobile (1)
UI\MobileControls\Adapters\WmlCalendarAdapter.cs (1)
106
_textBox
= new TextBox();
10 references to _textBox
System.Web.Mobile (10)
UI\MobileControls\Adapters\WmlCalendarAdapter.cs (10)
107
_textBox
.Visible = false;
108
_textBox
.EnableViewState = false;
109
Control.Controls.Add(
_textBox
);
415
_textBox
.Numeric = true;
416
_textBox
.Size = numericDateFormat.Length;
417
_textBox
.MaxLength = numericDateFormat.Length;
418
_textBox
.Text = Control.VisibleDate.ToString(numericDateFormat, CultureInfo.InvariantCulture);
419
_textBox
.Visible = true;
420
_textBox
.RenderControl(writer);
582
String dateText =
_textBox
.Text;