
'Declaration <DefaultPropertyAttribute("Bands")> <DesignerAttribute(DesignerBaseTypeName="System.ComponentModel.Design.IDesigner", DesignerTypeName="Xceed.Chart.UIControls.PanelBarDesigner, Xceed.Chart.UIControls.v4.4, Version=4.4.100.0, Culture=neutral, PublicKeyToken=ba83ff368b7563c6")> <ToolboxItemAttribute(ToolboxItemType=, ToolboxItemTypeName="")> Public Class PanelBar Inherits System.Windows.Forms.UserControl
'Usage Dim instance As PanelBar
[DefaultProperty("Bands")] [Designer(DesignerBaseTypeName="System.ComponentModel.Design.IDesigner", DesignerTypeName="Xceed.Chart.UIControls.PanelBarDesigner, Xceed.Chart.UIControls.v4.4, Version=4.4.100.0, Culture=neutral, PublicKeyToken=ba83ff368b7563c6")] [ToolboxItem(ToolboxItemType=, ToolboxItemTypeName="")] public class PanelBar : System.Windows.Forms.UserControl
' create the panel bar and dock it on the left of the form Dim panelbar As PanelBar = New PanelBar() panelbar.Dock = DockStyle.Left Me.Controls.Add(panelbar) ' customize it panelbar.Caption = "My Panel Bar" panelbar.CaptionBackColor = SystemColors.ControlDark panelbar.BorderStyle = Border.Flat ' create a simple band Dim band As Band = New Band() band.Caption = "My Band" panelbar.Bands.Add(band)
// create the panel bar and dock it on the left of the form PanelBar panelbar = new PanelBar(); panelbar.Dock = DockStyle.Left; this.Controls.Add(panelbar); // customize it panelbar.Caption = "My Panel Bar"; panelbar.CaptionBackColor = SystemColors.ControlDark; panelbar.BorderStyle = Border.Flat; // create a simple band Band band = new Band(); band.Caption = "My Band"; panelbar.Bands.Add(band);
System.Object
System.MarshalByRefObject
System.ComponentModel.Component
System.Windows.Forms.Control
System.Windows.Forms.ScrollableControl
System.Windows.Forms.ContainerControl
System.Windows.Forms.UserControl
Xceed.Chart.UIControls.PanelBar
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2