1 instantiation of ControlElement
System.Web.Mobile (1)
UI\MobileControls\MobileControlsSection.cs (1)
555return new ControlElement();
13 references to ControlElement
System.Web.Mobile (13)
UI\MobileControls\MobileControlsSection.cs (12)
479[ConfigurationCollection(typeof(ControlElement), AddItemName = "control")] 509public void Add( ControlElement controlElement ) 517public void Remove( ControlElement controlElement ) 525public new ControlElement this[ string name ] 529return (ControlElement)BaseGet( name ); 532public ControlElement this[ int index ] 536return (ControlElement)BaseGet( index ); 560return ( (ControlElement)element ).Name; 592private static readonly ConfigurationElementProperty s_elemProperty = new ConfigurationElementProperty( new CallbackValidator( typeof( ControlElement ), ValidateElement ) ); 694Debug.Assert( ( value != null ) && ( value is ControlElement ) ); 696ControlElement elem = (ControlElement)value;
UI\MobileControls\MobileControlsSectionHelper.cs (1)
16foreach (ControlElement control in device.Controls) {