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