ListBox.SelectAll 方法

定义

选择 ListBox 控件中的所有项。

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

示例

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

注解

警告

仅当 SelectionMode 属性设置为 MultipleExtended 时,才应调用 SelectAll 方法。 如果在 SelectionModeSingle 时调用 SelectAll,则会引发异常。

适用于