ListBox.SelectedItems Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the currently selected items.
public:
property System::Collections::IList ^ SelectedItems { System::Collections::IList ^ get(); };
[System.ComponentModel.Bindable(true)]
public System.Collections.IList SelectedItems { get; }
[<System.ComponentModel.Bindable(true)>]
member this.SelectedItems : System.Collections.IList
Public ReadOnly Property SelectedItems As IList
Property Value
Returns a collection of the currently selected items.
- Attributes
Exceptions
The SelectionMode property is set to Single.
Examples
The following example shows how to use the SelectedItems property to determine whether a list box has any selected items.
private void SelectedItems(object sender, RoutedEventArgs e)
{
if (lb.SelectedItem != null)
{
label1.Content = "Has " + (lb.SelectedItems.Count.ToString()) + " item(s) selected.";
}
}
Private Sub SelectedItems(ByVal sender As Object, ByVal e As RoutedEventArgs)
If lb.SelectedItem IsNot Nothing Then
label1.Content = "Has " & (lb.SelectedItems.Count.ToString()) & " item(s) selected."
End If
End Sub
Remarks
This property is meant to be used when SelectionMode does not equal Single. If the selection mode is Single the correct property to use is SelectedItem.
Dependency Property Information
Item | Value |
---|---|
Identifier field | SelectedItemsProperty |
Metadata properties set to true |
None |
Applies to
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET