1 write to _mobileControl
System.Web.Mobile (1)
UI\MobileControls\Design\MobileControlDesigner.cs (1)
447_mobileControl = (System.Web.UI.MobileControls.MobileControl) component;
31 references to _mobileControl
System.Web.Mobile (31)
UI\MobileControls\Design\MobileControlDesigner.cs (31)
118DesignerAdapterUtil.GetContainmentStatus(_mobileControl); 230if (!DesignerAdapterUtil.InMobileUserControl(_mobileControl)) 232if (DesignerAdapterUtil.InUserControl(_mobileControl)) 238if (!DesignerAdapterUtil.InMobilePage(_mobileControl)) 251_mobileControl.GetControlText(out containsTag, out containsDataboundLiteral); 336errorMessage, infoMode, _mobileControl, Behavior, ContainmentStatus); 364bool hasControls = _mobileControl.HasControls(); 365if ((_mobileControl is TextControl || _mobileControl is TextView) 372children = new Control[_mobileControl.Controls.Count]; 373_mobileControl.Controls.CopyTo(children, 0); 376if (_mobileControl is TextControl) 378originalText = ((TextControl)_mobileControl).Text; 379((TextControl)_mobileControl).Text = String.Empty; 383originalText = ((TextView)_mobileControl).Text; 384((TextView)_mobileControl).Text = String.Empty; 390MobileControlPersister.PersistInnerProperties(sw, _mobileControl, Host); 400if (_mobileControl is TextControl) 402((TextControl)_mobileControl).Text = originalText; 406((TextView)_mobileControl).Text = originalText; 412_mobileControl.Controls.Add(c); 418MobileControlPersister.PersistInnerProperties(sw, _mobileControl, Host); 469if ((_mobileControl is TextControl || _mobileControl is TextView) 472_mobileControl.Controls.Clear(); 521_mobileControl.RefreshStyle(); 555return _mobileControl; 563return _mobileControl; 589ds = ((MobileControl) _mobileControl).DeviceSpecific; 598ds.SetOwner((MobileControl) _mobileControl); 600_mobileControl.DeviceSpecific = ds;