ToolStripComboBox.DropDownStyle Eigenschaft

Definition

Ruft einen Wert ab, der den Stil der ToolStripComboBox angibt, oder legt diesen fest.

public:
 property System::Windows::Forms::ComboBoxStyle DropDownStyle { System::Windows::Forms::ComboBoxStyle get(); void set(System::Windows::Forms::ComboBoxStyle value); };
public System.Windows.Forms.ComboBoxStyle DropDownStyle { get; set; }
member this.DropDownStyle : System.Windows.Forms.ComboBoxStyle with get, set
Public Property DropDownStyle As ComboBoxStyle

Eigenschaftswert

ComboBoxStyle

Einer der ComboBoxStyle-Werte. Der Standardwert ist DropDown.

Beispiele

Im folgenden Codebeispiel wird die Syntax zum Festlegen verschiedener ToolStripComboBox Eigenschaften veranschaulicht, einschließlich der DropDownStyle Eigenschaft.

// The following code example demonstrates the syntax for setting
// various ToolStripComboBox properties.
// 
toolStripComboBox1.AutoCompleteCustomSource.AddRange(new string[] {
"aaa",
"bbb",
"ccc"});
toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend;
toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource;
toolStripComboBox1.DropDownHeight = 110;
toolStripComboBox1.DropDownWidth = 122;
toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
toolStripComboBox1.IntegralHeight = false;
toolStripComboBox1.Items.AddRange(new object[] {
"xxx",
"yyy",
"zzz"});
toolStripComboBox1.MaxDropDownItems = 9;
toolStripComboBox1.MergeAction = System.Windows.Forms.MergeAction.Insert;
toolStripComboBox1.Name = "toolStripComboBox1";
toolStripComboBox1.Size = new System.Drawing.Size(121, 25);
toolStripComboBox1.Sorted = true;
' The following code example demonstrates the syntax for setting
' various ToolStripComboBox properties.
' 
toolStripComboBox1.AutoCompleteCustomSource.AddRange(New String() {"aaa", "bbb", "ccc"})
toolStripComboBox1.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.SuggestAppend
toolStripComboBox1.AutoCompleteSource = System.Windows.Forms.AutoCompleteSource.CustomSource
toolStripComboBox1.DropDownHeight = 110
toolStripComboBox1.DropDownWidth = 122
toolStripComboBox1.FlatStyle = System.Windows.Forms.FlatStyle.Standard
toolStripComboBox1.IntegralHeight = False
toolStripComboBox1.Items.AddRange(New Object() {"xxx", "yyy", "zzz"})
toolStripComboBox1.MaxDropDownItems = 9
toolStripComboBox1.MergeAction = System.Windows.Forms.MergeAction.Insert
toolStripComboBox1.Name = "toolStripComboBox1"
toolStripComboBox1.Size = New System.Drawing.Size(121, 25)
toolStripComboBox1.Sorted = True

Hinweise

Die DropDownStyle Eigenschaft steuert die Schnittstelle, die dem Benutzer angezeigt wird. Sie können einen Wert eingeben, der ein einfaches Dropdownlistenfeld ermöglicht, in dem die Liste immer angezeigt wird, ein Dropdownlistenfeld, in dem der Textteil nicht bearbeitet werden kann, und Sie müssen einen Pfeil auswählen, um das Dropdownfeld anzuzeigen, oder das Standardlistenfeld, in dem der Textteil bearbeitet werden kann, und der Benutzer muss die Pfeiltaste drücken, um die Liste anzuzeigen. Verwenden Sie ein ListBox Steuerelement, um immer eine Liste anzuzeigen, die der Benutzer nicht bearbeiten kann.

Gilt für