2 types derived from Panel
System.Web.Mobile (2)
UI\MobileControls\Form.cs (1)
30public class Form : Panel, ITemplateable, IPostBackEventHandler
UI\MobileControls\TemplateContainer.cs (1)
30public class TemplateContainer : Panel, INamingContainer
28 references to Panel
System.Web.Mobile (28)
UI\MobileControls\Adapters\HtmlPanelAdapter.cs (2)
35protected new Panel Control 39return (Panel)base.Control;
UI\MobileControls\Adapters\WmlFormAdapter.cs (2)
85Panel header = Control.Header; 86Panel footer = Control.Footer;
UI\MobileControls\Adapters\WmlPanelAdapter.cs (2)
34protected new Panel Control 38return (Panel)base.Control;
UI\MobileControls\Adapters\XhtmlAdapters\XhtmlBasicPanelAdapter.cs (2)
26protected new Panel Control { 28return base.Control as Panel;
UI\MobileControls\Design\Adapters\DesignerAdapterUtil.cs (1)
72else if (parent is Panel)
UI\MobileControls\Design\DeviceSpecificDesigner.cs (3)
36private System.Web.UI.MobileControls.Panel _parentContainer; 274if (parentContainer is System.Web.UI.MobileControls.Panel) 276_parentContainer = (System.Web.UI.MobileControls.Panel) parentContainer;
UI\MobileControls\Design\MobileTemplatedControlDesigner.cs (2)
373if (_control.Parent is Panel) 375((Panel)_control.Parent).Style.ApplyTo(style);
UI\MobileControls\Design\PanelDesigner.cs (5)
22/// Provides design-time support for the <see cref='System.Web.UI.MobileControls.Panel'/> 26/// <seealso cref='System.Web.UI.MobileControls.Panel'/> 34private Panel _panel; 108Debug.Assert(component is Panel, 114_panel = (Panel) component;
UI\MobileControls\Form.cs (6)
39private Panel _headerContainer = null; 40private Panel _footerContainer = null; 41private Panel _scriptContainer = null; 242public Panel Header 256public Panel Footer 270public Panel Script
UI\MobileControls\ObjectList.cs (1)
433public Panel Details
UI\MobileControls\Panel.cs (2)
29Panel _deviceSpecificContents = null; 173public Panel Content