728x90
Declare Function GetActiveWindow Lib "user32" Alias "GetActiveWindow" () As Integer
▶VB.NET 선언
GetActiveWindow()
▶VB.NET 호출
[System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern int GetActiveWindow();
▶C# 선언
GetActiveWindow()
▶C# 호출
GetActiveWIndow는 현재 함수를 호출하고 있는 Program(Thread)과 관련된 Windows의 handle값을 반환합니다.
만일 관련된 Windows화면이 존재하지 않는 경우에는 null을 반환합니다.
728x90
'.NET > Windows API for .NET' 카테고리의 다른 글
Windows API (0) | 2019.08.12 |
---|---|
GetFocus - 현재 Focus에 있는 Form또는 Control의 handle값 반환 (0) | 2019.08.12 |
ActivateKeyboardLayout - Keyboard 언어별 선택함수 (0) | 2019.08.12 |
CopyMemory - Memory 복사 (0) | 2019.08.12 |
SystemParameterInfo - Windows System 환경설정 (0) | 2019.08.12 |