ListBoxItem.Selected 이벤트
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
ListBoxItem이 선택되면 발생합니다.
public:
event System::Windows::RoutedEventHandler ^ Selected;
public event System.Windows.RoutedEventHandler Selected;
member this.Selected : System.Windows.RoutedEventHandler
Public Custom Event Selected As RoutedEventHandler
이벤트 유형
예제
다음 예제에서는 구독 하 고이 이벤트를 처리 하는 방법을 보여 줍니다.
<ListBoxItem Name="lbi0" Selected="OnSelected" Unselected="OnUnselected">Item 0</ListBoxItem>
private void OnSelected(object sender, RoutedEventArgs e)
{
ListBoxItem lbi = e.Source as ListBoxItem;
if (lbi != null)
{
label1.Content = lbi.Content.ToString() + " is selected.";
}
}
Private Sub OnSelected(ByVal sender As Object, ByVal e As RoutedEventArgs)
Dim lbi As ListBoxItem = TryCast(e.Source, ListBoxItem)
If lbi IsNot Nothing Then
label1.Content = lbi.Content.ToString() & " is selected."
End If
End Sub
설명
시기를 알고 선택 항목을 ListBox 변경 내용을 수신 대기를 SelectionChanged 이벤트.
라우팅 이벤트 정보
식별자 필드 | SelectedEvent |
라우팅 전략 | 버블링 |
대리자 | RoutedEventHandler |
적용 대상
GitHub에서 Microsoft와 공동 작업
이 콘텐츠의 원본은 GitHub에서 찾을 수 있으며, 여기서 문제와 끌어오기 요청을 만들고 검토할 수도 있습니다. 자세한 내용은 참여자 가이드를 참조하세요.
.NET