ListBox.SelectAll 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
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 屬性設定為 Multiple 或 Extended時,才應該呼叫 SelectAll 方法。 如果 SelectionMode 為 Single時呼叫 SelectAll,則會擲回例外狀況。