ListBox.UnselectAll 方法

定义

清除 ListBox 中的所有选择。

public:
 void UnselectAll();
public void UnselectAll ();
member this.UnselectAll : unit -> unit
Public Sub UnselectAll ()

示例

以下示例演示如何使用 UnselectAll 该方法取消选择列表框中的所有项。

private void UnselectAll(object sender, RoutedEventArgs e)
{
    lb.UnselectAll();
}
Private Sub UnselectAll(ByVal sender As Object, ByVal e As RoutedEventArgs)
    lb.UnselectAll()
End Sub

适用于