1 write to _textBox
System.Web.Mobile (1)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicCalendarAdapter.cs (1)
95
_textBox
= new TextBox();
11 references to _textBox
System.Web.Mobile (11)
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicCalendarAdapter.cs (11)
96
_textBox
.Visible = false;
97
_textBox
.EnableViewState = false;
99
_textBox
.TextChanged += eventHandler;
100
Control.Controls.Add(
_textBox
);
383
_textBox
.Numeric = true;
384
_textBox
.Size = numericDateFormat.Length;
385
_textBox
.MaxLength = numericDateFormat.Length;
386
_textBox
.Text = Control.VisibleDate.ToString(numericDateFormat, CultureInfo.CurrentCulture);
387
_textBox
.Visible = true;
388
_textBox
.RenderControl(writer);
538
String dateText =
_textBox
.Text;