프로그래밍 연습하기

C# WPF 창의 활성화 이벤트를 사용하는 법 본문

C#

C# WPF 창의 활성화 이벤트를 사용하는 법

john.k 2020. 8. 1. 00:03
반응형

https://stackoverflow.com/questions/1217268/how-to-get-notified-when-a-window-get-focus-in-wpf

 

How to get notified when a window get focus in WPF?

I want to get notified when I click a window in WPF (I use the GotFocus event), but it only triggers when I click on a Combobox in the window. What I want is to get notified when the the window or ...

stackoverflow.com

스택오버플로를 참고하였습니다.

 

원래는 GotFocus를 사용하려고 했는데, 원하는대로 바로바로 이벤트를 받는 함수가 실행되지 않았습니다.

찾아보니 Activated를 사용하는 것을 알 수 있었고, 제가 생각하던 대로 동작하는 것을 확인하였습니다.

반응형
Comments