포커스 트래커
프로그램 설명
포커스(초점)가 바뀔 때마다 어느 UI 자동화 요소가 포커스를 소유하고 있는지 콘솔 화면에 출력하는 응용 프로그램
프로젝트 유형: C# 콘솔 응용 프로그램
요구 조건: 다음의 4 개의 UI 자동화 기술에 관한 .NET 어셈블리를 참조
using System; using System.Windows.Automation; namespace 예제_2._1_포커스_트래커 { class Program { static void Main(string[] args) { AutomationFocusChangedEventHandler afceh = null; afceh = new AutomationFocusChangedEventHandler( FocusChangedEventHandler); Automation.AddAutomationFocusChangedEventHandler(afceh); Console.ReadLine(); Automation.RemoveAutomationFocusChangedEventHandler(afceh); } static void FocusChangedEventHandler(object obj, AutomationFocusChangedEventArgs e) { AutomationElement ae = AutomationElement.FocusedElement; Console.WriteLine(ae.Current.Name); } } } |
[소스] 포커스 트레커 소스
'.NET > 소프트웨어 접근성, UI 자동화' 카테고리의 다른 글
[S/W 접근성] TreeWalker를 이용하여 데스크 톱의 자식 요소 조사 (0) | 2016.04.19 |
---|---|
[S/W 접근성] 화면 좌표로 UI 요소 탐색 후 속성 타입 얻어오기 (0) | 2016.04.19 |
[S/W 접근성] 화면 좌표로 InvokePattern 검색 (0) | 2016.04.19 |
[S/W 접근성] 화면 좌표로 UI 요소 탐색 (0) | 2016.04.19 |
[S/W 접근성] 포커스 소유한 자동화 요소 속성 출력 (0) | 2016.04.19 |