728x90
SetActiveWindow함수는 인수로 전달한 Handle의 Windows Form을 최상위로 이동시켜 활성화 합니다.
Declare Function SetActiveWindow Lib "user32" Alias "SetActiveWindow" (ByVal hwnd As Integer) As Integer
▶VB.NET 선언
SetActiveWIndow(Handle)
▶VB.NET 호출
[DllImport("user32.dll")]
private static extern int SetActiveWindow(int hwnd);
▶C# 선언
SetActiveWindow((int)handle);
▶C# 호출
SetActiveWindow함수의 인수로는 활성화하고자 하는 Form의 handle을 기술하시면 됩니다.
728x90
'.NET > Windows API for .NET' 카테고리의 다른 글
RegisterHotKey - Windows Hotkey 설정 (0) | 2019.08.12 |
---|---|
UnregisterHotKey - 설정한 Hotkey의 해제 (0) | 2019.08.12 |
OemKeyScan - OEM Ascii Code의 OEM Scan Code변환 (0) | 2019.08.12 |
MapVirtualKey - Virtual Keycode와 Scan Code의 상호 변환 (0) | 2019.08.12 |
MapVirtualKeyEx - Virtual Keycode와 Scan Code의 상호 변환(Keyboard 설정) (0) | 2019.08.12 |