ListBox.ClearSelected メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ListBox 内のすべての項目を選択解除します。
public:
void ClearSelected();
public void ClearSelected ();
member this.ClearSelected : unit -> unit
Public Sub ClearSelected ()
例
次のコード例では、プロパティと共TopIndexにプロパティをSelectedIndex使用して、現在選択されている項目を、表示領域の項目の一覧の先頭に移動する方法をListBox示します。 この例では、クラスのメソッドを使用して項目を削除する RemoveAt 方法と、メソッドを System.Windows.Forms.ListBox.ObjectCollection 使用して ClearSelected すべての項目の選択をクリアする方法をさらに示します。 コードは、最初にリストの一番上に ListBox 現在選択されている項目を移動します。 次に、現在選択されている項目の前にあるすべての項目が削除され、 ListBox. この例では、 ListBox 含まれている項目をフォームに追加し、項目が現在選択 ListBoxされている必要があります。
private:
void RemoveTopItems()
{
// Determine if the currently selected item in the ListBox
// is the item displayed at the top in the ListBox.
if ( listBox1->TopIndex != listBox1->SelectedIndex )
// Make the currently selected item the top item in the ListBox.
listBox1->TopIndex = listBox1->SelectedIndex;
// Remove all items before the top item in the ListBox.
for ( int x = (listBox1->SelectedIndex - 1); x >= 0; x-- )
{
listBox1->Items->RemoveAt( x );
}
// Clear all selections in the ListBox.
listBox1->ClearSelected();
}
private void RemoveTopItems()
{
// Determine if the currently selected item in the ListBox
// is the item displayed at the top in the ListBox.
if (listBox1.TopIndex != listBox1.SelectedIndex)
// Make the currently selected item the top item in the ListBox.
listBox1.TopIndex = listBox1.SelectedIndex;
// Remove all items before the top item in the ListBox.
for (int x = (listBox1.SelectedIndex -1); x >= 0; x--)
{
listBox1.Items.RemoveAt(x);
}
// Clear all selections in the ListBox.
listBox1.ClearSelected();
}
Private Sub RemoveTopItems()
' Determine if the currently selected item in the ListBox
' is the item displayed at the top in the ListBox.
If listBox1.TopIndex <> listBox1.SelectedIndex Then
' Make the currently selected item the top item in the ListBox.
listBox1.TopIndex = listBox1.SelectedIndex
End If
' Remove all items before the top item in the ListBox.
Dim x As Integer
For x = listBox1.SelectedIndex - 1 To 0 Step -1
listBox1.Items.RemoveAt(x)
Next x
' Clear all selections in the ListBox.
listBox1.ClearSelected()
End Sub
注釈
このメソッドを呼び出すことは、プロパティを負の SelectedIndex 1 (-1) に設定することと同じです。 このメソッドを使用すると、リスト内のすべての項目をすばやく選択解除できます。