ExecutedRoutedEventArgs 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
Executed 및 PreviewExecuted 라우트된 이벤트에 대한 데이터를 제공합니다.
public ref class ExecutedRoutedEventArgs sealed : System::Windows::RoutedEventArgs
public sealed class ExecutedRoutedEventArgs : System.Windows.RoutedEventArgs
type ExecutedRoutedEventArgs = class
inherit RoutedEventArgs
Public NotInheritable Class ExecutedRoutedEventArgs
Inherits RoutedEventArgs
- 상속
예제
다음 예에서는 명령이 실행될 때 를 MessageBox 여는 을 만듭니다ExecutedRoutedEventHandler.
void OpenCmdExecuted(object target, ExecutedRoutedEventArgs e)
{
String command, targetobj;
command = ((RoutedCommand)e.Command).Name;
targetobj = ((FrameworkElement)target).Name;
MessageBox.Show("The " + command + " command has been invoked on target object " + targetobj);
}
Private Sub OpenCmdExecuted(ByVal sender As Object, ByVal e As ExecutedRoutedEventArgs)
Dim command, targetobj As String
command = CType(e.Command, RoutedCommand).Name
targetobj = CType(sender, FrameworkElement).Name
MessageBox.Show("The " + command + " command has been invoked on target object " + targetobj)
End Sub
설명
ExecutedRoutedEventHandler 는 의 명령 논리를 구현하는 메서드를 RoutedCommand나타냅니다. 명령에서 구현 논리를 분리하면 명령이 다른 원본 및 형식에서 호출되고 명령 논리의 중앙 집중화가 가능합니다.
이 이벤트 데이터 클래스는 및 CommandManager.PreviewExecuted에 CommandManager.Executed 도 사용됩니다. 가장 유용한 처리기를 처리할 수는 Executed 특정 이벤트 CommandBinding아닌 근무 보다는 CommandManager 수준입니다.
명령에 대한 자세한 내용은 명령 개요를 참조하세요.
속성
Command |
호출된 명령을 가져옵니다. |
Handled |
경로를 따라 이동할 때 라우트된 이벤트의 현재 이벤트 처리 상태를 나타내는 값을 가져오거나 설정합니다. (다음에서 상속됨 RoutedEventArgs) |
OriginalSource |
부모 클래스에 의한 Source 조정 앞에 순수 적중 횟수 테스트에서 결정한 원본 보고 소스를 가져옵니다. (다음에서 상속됨 RoutedEventArgs) |
Parameter |
명령의 데이터 매개 변수를 가져옵니다. |
RoutedEvent |
이 RoutedEventArgs 인스턴스와 연결된 RoutedEvent를 가져오거나 설정합니다. (다음에서 상속됨 RoutedEventArgs) |
Source |
이벤트를 발생시킨 개체에 대한 참조를 가져오거나 설정합니다. (다음에서 상속됨 RoutedEventArgs) |
메서드
Equals(Object) |
지정된 개체가 현재 개체와 같은지 확인합니다. (다음에서 상속됨 Object) |
GetHashCode() |
기본 해시 함수로 작동합니다. (다음에서 상속됨 Object) |
GetType() |
현재 인스턴스의 Type을 가져옵니다. (다음에서 상속됨 Object) |
InvokeEventHandler(Delegate, Object) |
파생 클래스에서 재정의된 경우 기본 구현 이상으로 효율성을 높일 수 있는 형식별 방법으로 이벤트 처리기를 호출하는 방법을 제공합니다. (다음에서 상속됨 RoutedEventArgs) |
MemberwiseClone() |
현재 Object의 단순 복사본을 만듭니다. (다음에서 상속됨 Object) |
OnSetSource(Object) |
파생된 클래스에서 재정의되는 경우 인스턴스의 Source 속성 값이 변경될 때마다 알림 콜백 진입점을 제공합니다. (다음에서 상속됨 RoutedEventArgs) |
ToString() |
현재 개체를 나타내는 문자열을 반환합니다. (다음에서 상속됨 Object) |
적용 대상
추가 정보
.NET