1 instantiation of DeviceElement
System.Web.Mobile (1)
UI\MobileControls\MobileControlsSection.cs (1)
216return new DeviceElement();
15 references to DeviceElement
System.Web.Mobile (15)
UI\MobileControls\MobileControlsSection.cs (12)
139[ConfigurationCollection(typeof(DeviceElement), AddItemName="device")] 169public void Add( DeviceElement deviceElement ) 178public void Remove( DeviceElement deviceElement ) 186public new DeviceElement this[ string name ] 190return (DeviceElement)BaseGet( name ); 193public DeviceElement this[ int index ] 197return (DeviceElement)BaseGet( index ); 221return ( (DeviceElement)element ).Name; 253private static readonly ConfigurationElementProperty s_elemProperty = new ConfigurationElementProperty( new CallbackValidator( typeof( DeviceElement ), ValidateElement ) ); 452Debug.Assert( ( value != null ) && ( value is DeviceElement ) ); 454DeviceElement elem = (DeviceElement)value;
UI\MobileControls\MobileControlsSectionHelper.cs (3)
15private static void AddControlAdapters(IndividualDeviceConfig deviceConfig, DeviceElement device) { 30foreach (DeviceElement device in controlSection.Devices) { 52private static IndividualDeviceConfig CreateDeviceConfig(ControlsConfig config, DeviceElement device) {