Editor for WinForms | ComponentOne
C1.Win.C1Editor.4.5.2 Assembly / C1.Win.C1Editor.ToolStrips Namespace / C1EditorToolStripComboBox Class
Members Example

In This Topic
    C1EditorToolStripComboBox Class
    In This Topic
    Represents a toolstrip combo box which performs a command.
    Object Model
    C1EditorToolStripComboBox Class
    Syntax
    'Declaration
     
    Public Class C1EditorToolStripComboBox 
       Inherits System.Windows.Forms.ToolStripComboBox
    public class C1EditorToolStripComboBox : System.Windows.Forms.ToolStripComboBox 
    Remarks
    Use this class to add a C1.Win.C1Editor.C1Editor-related ComboBox to a ToolStrip.
    Example
    The following code example demonstrates how to create a C1EditorToolStripComboBox and add it to a System.Windows.Forms.ToolStrip.
    C1EditorToolStripComboBox comboBox = new C1EditorToolStripComboBox();
    comboBox.Command = CommandComboBox.Style;
    comboBox.Editor = c1Editor1;
    toolStrip1.Items.Add(comboBox);
    Inheritance Hierarchy

    System.Object
       System.MarshalByRefObject
          System.ComponentModel.Component
             System.Windows.Forms.ToolStripItem
                System.Windows.Forms.ToolStripControlHost
                   System.Windows.Forms.ToolStripComboBox
                      C1.Win.C1Editor.ToolStrips.C1EditorToolStripComboBox

    See Also