Freigeben über


ToolStripComboBox.Sorted Eigenschaft

Definition

Ruft einen Wert ab, der angibt, ob die Elemente in der ToolStripComboBox sortiert sind, oder legt diesen fest.

public:
 property bool Sorted { bool get(); void set(bool value); };
public bool Sorted { get; set; }
member this.Sorted : bool with get, set
Public Property Sorted As Boolean

Eigenschaftswert

Boolean

true, wenn das Kombinationsfeld sortiert ist, andernfalls false. Der Standardwert ist false.

Beispiele

Im folgenden Codebeispiel wird die Syntax zum Festlegen verschiedener ToolStripComboBox Eigenschaften veranschaulicht, einschließlich der Sorted 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

Diese Eigenschaft gibt an, ob die ToolStripComboBox vorhandenen Einträge sortiert und der entsprechenden sortierten Position in der Liste neue Einträge hinzugefügt werden. Sie können diese Eigenschaft verwenden, um Elemente automatisch in einer ToolStripComboBoxSortierung zu sortieren. Da Elemente zu einer ToolStripComboBoxsortierten Liste hinzugefügt werden, werden die Elemente an den entsprechenden Speicherort in der sortierten Liste verschoben. Wenn Sie die Eigenschaft auf falsefestlegen, werden neue Elemente am Ende der vorhandenen Liste hinzugefügt. Die Sortierung ist groß- und alphabetisch aufsteigend.

Gilt für