
'Declaration <ToolboxItemAttribute(ToolboxItemType=, ToolboxItemTypeName="")> <DesignerAttribute(DesignerBaseTypeName="System.ComponentModel.Design.IDesigner", DesignerTypeName="Xceed.Chart.UIControls.ToolBarDesigner, Xceed.Chart.UIControls.v4.4, Version=4.4.100.0, Culture=neutral, PublicKeyToken=ba83ff368b7563c6")> Public Class ToolBar Inherits System.Windows.Forms.Control
'Usage Dim instance As ToolBar
[ToolboxItem(ToolboxItemType=, ToolboxItemTypeName="")] [Designer(DesignerBaseTypeName="System.ComponentModel.Design.IDesigner", DesignerTypeName="Xceed.Chart.UIControls.ToolBarDesigner, Xceed.Chart.UIControls.v4.4, Version=4.4.100.0, Culture=neutral, PublicKeyToken=ba83ff368b7563c6")] public class ToolBar : System.Windows.Forms.Control
'create a toolbar Dim toolbar As ToolBar = New ToolBar() 'create a toolbar button Dim tbb As ToolBarButton = New ToolBarButton() tbb.Style = ToolBarButtonStyle.Control 'create a standard combobox Dim combo As ComboBox = New ComboBox() 'assign it to the toolbar button tbb.Control = combo toolbar.Buttons.Add(tbb)
//create a toolbar ToolBar toolbar = new ToolBar(); //create a toolbar button ToolBarButton tbb = new ToolBarButton(); tbb.Style = ToolBarButtonStyle.Control; //create a standard combobox ComboBox combo = new ComboBox(); //assign it to the toolbar button tbb.Control = combo; toolbar.Buttons.Add(tbb);
System.Object
System.MarshalByRefObject
System.ComponentModel.Component
System.Windows.Forms.Control
Xceed.Chart.UIControls.ToolBar
Xceed.Chart.ChartToolbarControl
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