1 interface inheriting from IControlAdapter
System.Web.Mobile (1)
UI\MobileControls\IPageAdapter.cs (1)
25
public interface IPageAdapter :
IControlAdapter
1 implementation of IControlAdapter
System.Web.Mobile (1)
UI\MobileControls\Adapters\ControlAdapter.cs (1)
38
public abstract class ControlAdapter :
IControlAdapter
14 references to IControlAdapter
System.Web.Mobile (14)
UI\MobileControls\DesignerDeviceConfig.cs (4)
25
internal override
IControlAdapter
NewControlAdapter(Type originalControlType)
27
IControlAdapter
adapter;
32
adapter = (
IControlAdapter
) adapterFactory.CreateInstance();
51
adapter = Activator.CreateInstance(adapterType) as
IControlAdapter
;
UI\MobileControls\IndividualDeviceConfig.cs (3)
175
internal virtual
IControlAdapter
NewControlAdapter(Type originalControlType)
182
IControlAdapter
a = (
IControlAdapter
) factory.CreateInstance();
UI\MobileControls\MobileControl.cs (2)
50
private
IControlAdapter
_adapter;
69
public new
IControlAdapter
Adapter
UI\MobileControls\MobileControlsSection.cs (2)
610
new SubclassTypeValidator( typeof(
IControlAdapter
) ),
671
[SubclassTypeValidator(typeof(
IControlAdapter
))]
UI\MobileControls\MobileControlsSectionHandler.cs (1)
115
CheckedGetType(adapterName, "adapter", helper, typeof(
IControlAdapter
), currentChild));
UI\MobileControls\MobilePage.cs (2)
410
public virtual
IControlAdapter
GetControlAdapter(MobileControl control)
412
IControlAdapter
adapter = RequestingDeviceConfig.NewControlAdapter(control.GetType ());