|
이 문서는 기계로 번역한 것입니다. 원본 텍스트를 보려면 포인터를 문서의 문장 위로 올리십시오. 추가 정보
|
번역
원본
|
UIElement.RemoveHandler 메서드
네임스페이스: System.Windows
어셈블리: PresentationCore(PresentationCore.dll)
매개 변수
- routedEvent
- 형식: System.Windows.RoutedEvent
처리기가 연결된 라우팅된 이벤트의 식별자입니다.
- handler
- 형식: System.Delegate
이 요소의 이벤트 처리기 컬렉션에서 제거할 특정 처리기 구현입니다.
구현
IInputElement.RemoveHandler(RoutedEvent, Delegate)public static readonly RoutedEvent TapEvent = EventManager.RegisterRoutedEvent( "Tap", RoutingStrategy.Bubble, typeof(RoutedEventHandler), typeof(MyButtonSimple)); // Provide CLR accessors for the event public event RoutedEventHandler Tap { add { AddHandler(TapEvent, value); } remove { RemoveHandler(TapEvent, value); } }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008(서버 코어 역할은 지원되지 않음), Windows Server 2008 R2(서버 코어 역할은 SP1 이상에서 지원, Itanium은 지원되지 않음)
.NET Framework에서 모든 플랫폼의 전체 버전을 지원하지는 않습니다. 지원되는 버전의 목록을 보려면 .NET Framework 시스템 요구 사항을 참조하십시오.