ListBox.SelectAll Methode

Definition

Wählt alle Elemente im ListBox-Steuerelement aus.

public:
 virtual void SelectAll() = SelectAll;
void SelectAll();
public void SelectAll();
function selectAll()
Public Sub SelectAll ()

Beispiele

if (listBox.SelectionMode != SelectionMode.Single)
{
    listBox.SelectAll();
}
if (listBox().SelectionMode() != Windows::UI::Xaml::Controls::SelectionMode::Single)
{
    listBox().SelectAll();
}
if (listBox->SelectionMode != SelectionMode::Single)
{
    listBox->SelectAll();
}
If listBox.SelectionMode <> SelectionMode.Single Then
    listBox.SelectAll()
End If

Hinweise

Warnung

Die SelectAll-Methode sollte nur aufgerufen werden, wenn die SelectionMode-Eigenschaft auf Multiple oder Extended festgelegt ist. Wenn SelectAll aufgerufen wird, wenn SelectionModeSingle ist, wird eine Ausnahme ausgelöst.

Gilt für: