6 types derived from UserControl
System.Web (1)
UI\MasterPage.cs (1)
55public class MasterPage : UserControl {
System.Web.DynamicData (4)
DynamicData\EntityTemplateUserControl.cs (1)
9public class EntityTemplateUserControl : UserControl {
DynamicData\FieldTemplateUserControl.cs (1)
20public class FieldTemplateUserControl : UserControl, IBindableControl, IFieldTemplate {
DynamicData\FilterUserControlBase.cs (1)
16public class FilterUserControlBase : UserControl, IControlParameterTarget {
DynamicData\QueryableFilterUserControl.cs (1)
13public abstract class QueryableFilterUserControl : UserControl {
System.Web.Mobile (1)
UI\MobileControls\MobileUserControl.cs (1)
23public class MobileUserControl : UserControl
55 references to UserControl
System.Web (42)
Compilation\BaseTemplateCodeDomTreeGenerator.cs (1)
394if (typeof(UserControl).IsAssignableFrom(ctrlType) && fControlFieldDeclared && !fControlSkin) {
Configuration\PagesSection.cs (1)
390ConfigUtil.CheckBaseType(typeof(System.Web.UI.UserControl),
UI\BaseTemplateParser.cs (2)
50Type type = typeof(UserControl); 90Util.CheckAssignableType(typeof(UserControl), t);
UI\ControlBuilder.cs (2)
1480UserControl uc = childObj as UserControl;
UI\PageParser.cs (1)
703if (value != null && !typeof(UserControl).IsAssignableFrom(value)) {
UI\PartialCachingControl.cs (2)
802UserControl uc = cachedControl as UserControl;
UI\TemplateControl.cs (8)
43/// <para>Provides the <see cref='System.Web.UI.Page'/> class and the <see cref='System.Web.UI.UserControl'/> class with a base set of functionality.</para> 591/// <para>Obtains a <see cref='System.Web.UI.UserControl'/> object from a user control file.</para> 662Util.CheckAssignableType(typeof(UserControl), t); 697UserControl uc = c as UserControl; 737Util.CheckAssignableType(typeof(UserControl), objectFactory.InstantiatedType); 743UserControl uc = (UserControl)_objectFactory.CreateInstance();
UI\TemplateControlParser.cs (1)
156if (enforceControl && !typeof(UserControl).IsAssignableFrom(t)) {
UI\UserControlParser.cs (1)
53internal override Type DefaultBaseType { get { return typeof(System.Web.UI.UserControl); } }
UI\WebParts\BlobPersonalizationState.cs (7)
506if (controlType == typeof(UserControl)) { 716UserControl uc = control as UserControl; 718extractedInfo._controlType = typeof(UserControl); 1239else if (_controlType == typeof(UserControl)) { 1240UserControl uc = c as UserControl;
UI\WebParts\ImportCatalogPart.cs (1)
248if (!WebPartManager.IsAuthorized(typeof(UserControl), userControlTypeName, null, isShared)) {
UI\WebParts\ProxyWebPart.cs (3)
45UserControl childUserControl = childControl as UserControl; 47originalType = typeof(UserControl);
UI\WebParts\WebPartManager.cs (12)
2146UserControl userControl = control as UserControl; 2792if (!IsAuthorized(typeof(UserControl), userControlTypeName, null, isShared)) { 3178if (type == typeof(UserControl)) { 3221UserControl childUserControl = childControl as UserControl; 3223childType = typeof(UserControl); 3389Debug.Assert(type == typeof(UserControl)); 4077UserControl userControl = childControl as UserControl; 4081typeName = WebPartUtil.SerializeType(typeof(UserControl)); 4312if (control is UserControl) {
System.Web.Mobile (13)
UI\MobileControls\Adapters\ChtmlFormAdapter.cs (1)
68else if (!(control is UserControl) &&
UI\MobileControls\Design\Adapters\DesignerAdapterUtil.cs (2)
76else if (parent is Page || parent is UserControl) 121return GetRootComponent(component) is UserControl;
UI\MobileControls\Design\MobileControlPersister.cs (3)
654else if (component is UserControl) 656expandos = ((UserControl)component).Attributes; 873else if (control is UserControl)
UI\MobileControls\Form.cs (1)
769(typeof(UserControl).IsAssignableFrom(controlType)) ||
UI\MobileControls\MobileControl.cs (2)
328control is UserControl); 1380else if (child is UserControl)
UI\MobileControls\MobilePage.cs (3)
238else if (control is UserControl) 1425if (control is Form || control is UserControl) 1435if (control is Form || control is UserControl)
UI\MobileControls\Style.cs (1)
337if (nearestTemplatedControl is UserControl &&