728x90
GetFocus는 현재 Focus상태에 있는 Control이나 Form의 handle값을 반환하는 함수 입니다.
Declare Function GetFocus Lib "user32" Alias "GetFocus" () As Integer
▶VB.NET 선언
GetFocus()
▶VB.NET 호출
[System.Runtime.InteropServices.DllImport("user32.dll")]
private static extern int GetFocus();
▶C# 선언
GetFocus()
▶C# 호출
참고로 이 함수는 Form이나 Control의 handle method의 반환값과 같습니다.
728x90
'.NET > Windows API for .NET' 카테고리의 다른 글
GetKeyboardState - Keyboard Key및 Mouse Button상태확인 (0) | 2019.08.12 |
---|---|
Windows API (0) | 2019.08.12 |
GetActiveWindow - 현재 프로그램의 윈도우 핸들값 (0) | 2019.08.12 |
ActivateKeyboardLayout - Keyboard 언어별 선택함수 (0) | 2019.08.12 |
CopyMemory - Memory 복사 (0) | 2019.08.12 |