확장 최소화
이 항목은 아직 평가되지 않았습니다.- 이 항목 평가

UIElement.PreviewKeyUp 이벤트

Occurs when a key is released while the keyboard is focused on this element.

네임스페이스: System.Windows
어셈블리: PresentationCore(presentationcore.dll)
XML 네임스페이스:  http://schemas.microsoft.com/winfx/2006/xaml/presentation

public event KeyEventHandler PreviewKeyUp
/** @event */
public final void add_PreviewKeyUp (KeyEventHandler value)

/** @event */
public final void remove_PreviewKeyUp (KeyEventHandler value)

JScript에서는 클래스에서 정의한 이벤트를 처리할 수 있지만 이벤트를 직접 정의할 수는 없습니다.
<object PreviewKeyUp="KeyEventHandler" .../>

Identifier field

PreviewKeyUpEvent

Routing strategy

Tunneling

Delegate

KeyEventHandler

  • The corresponding bubbling event is KeyUp.

  • Override OnPreviewKeyUp to implement class handling for this event in derived classes.

Key handling interacts with other platform features such as commanding and text composition. Key handling interacts with other platform features such as commanding and text composition. The KeyDown event is a lower-level text input event that might not behave as expected on certain controls. This is because some controls have control compositing or class handling that provides a higher-level version of text input handling and related events. For details, check the documentation for individual controls.

This event creates an alias for the Keyboard.PreviewKeyUp attached event for this class, so that PreviewKeyUp is part of the class members list when UIElement is inherited as a base element. Event handlers that are attached to the PreviewKeyUp event are attached to the underlying Keyboard.PreviewKeyUp attached event and receive the same event data instance.

Microsoft .NET Framework 3.0은 Windows Vista, Microsoft Windows XP SP2 및 Windows Server 2003 SP1에서 지원됩니다.

.NET Framework

3.0에서 지원
이 정보가 도움이 되었습니까?
(1500자 남음)

커뮤니티 추가 항목

추가
© 2013 Microsoft. All rights reserved.