Represents a toolstrip combo box which performs a command.
Namespace:
C1.Win.XmlEditor.ToolStripsAssembly: C1.Win.XmlEditor.2 (in C1.Win.XmlEditor.2.dll)
Syntax
| C# |
|---|
public class C1XmlEditorToolStripComboBox : ToolStripComboBox |
| Visual Basic (Declaration) |
|---|
Public Class C1XmlEditorToolStripComboBox _ Inherits ToolStripComboBox |
Remarks
Use this class to add a C1XmlEditor-related ComboBox to a ToolStrip.
Examples
The following code example demonstrates how to create a C1XmlEditorToolStripComboBox and add it to a ToolStrip.
Copy CodeC#
C1XmlEditorToolStripComboBox comboBox = new C1XmlEditorToolStripComboBox();
comboBox.Command = CommandComboBox.Style;
comboBox.Editor = c1XmlEditor1;
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.XmlEditor.ToolStrips..::.C1XmlEditorToolStripComboBox
System..::.MarshalByRefObject
System.ComponentModel..::.Component
System.Windows.Forms..::.ToolStripItem
System.Windows.Forms..::.ToolStripControlHost
System.Windows.Forms..::.ToolStripComboBox
C1.Win.XmlEditor.ToolStrips..::.C1XmlEditorToolStripComboBox