다음을 통해 공유


FocusManager.GetFocusedElement 메서드

정의

오버로드

GetFocusedElement()

포커스가 있는 UI의 요소를 검색합니다.

GetFocusedElement(XamlRoot)

Xaml 아일랜드 컨테이너 내에서 포커스가 있는 요소를 검색합니다.

GetFocusedElement()

포커스가 있는 UI의 요소를 검색합니다.

public:
 static Platform::Object ^ GetFocusedElement();
 static IInspectable GetFocusedElement();
public static object GetFocusedElement();
function getFocusedElement()
Public Shared Function GetFocusedElement () As Object

반환

Object

Platform::Object

IInspectable

포커스가 있는 개체입니다. 일반적으로 Control 클래스입니다.

설명

경고

WinUI 3 앱의 경우 이 메서드는 WinUI 3에서 지원되지 않는 CoreWindow API를 사용하므로 항상 null 반환합니다.

대신 FocusManager.GetFocusedElement(XamlRoot) 오버로드를 사용합니다. 여기서 XamlRootXamlRoot 속성을 통해 로드된 모든 UIElement를 검색할 수 있습니다.

적용 대상

GetFocusedElement(XamlRoot)

Xaml 아일랜드 컨테이너 내에서 포커스가 있는 요소를 검색합니다.

public:
 static Platform::Object ^ GetFocusedElement(XamlRoot ^ xamlRoot);
/// [Windows.Foundation.Metadata.Overload("GetFocusedElement")]
 static IInspectable GetFocusedElement(XamlRoot const& xamlRoot);
[Windows.Foundation.Metadata.Overload("GetFocusedElement")]
public static object GetFocusedElement(XamlRoot xamlRoot);
function getFocusedElement(xamlRoot)
Public Shared Function GetFocusedElement (xamlRoot As XamlRoot) As Object

매개 변수

xamlRoot
XamlRoot

반환

Object

Platform::Object

IInspectable

포커스가 있는 개체입니다. 일반적으로 Control 클래스입니다.

특성

Windows 요구 사항

디바이스 패밀리
Windows 10, version 1903 (10.0.18362.0에서 도입되었습니다.)
API contract
Windows.Foundation.UniversalApiContract (v8.0에서 도입되었습니다.)

추가 정보

  • GetFocusedElement()
  • 키보드 조작
  • 키보드, 게임 패드, 원격 제어 및 접근성 도구 대한 포커스 탐색
  • 프로그래밍 방식 포커스 탐색

적용 대상