■ WindowInteropHelper 클래스의 Handle 속성을 사용해 윈도우 핸들을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 |
using System; using System.Windows.Interop; IntPtr windowHandle = new WindowInteropHelper(this).Handle; |
■ WindowInteropHelper 클래스의 Handle 속성을 사용해 윈도우 핸들을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 |
using System; using System.Windows.Interop; IntPtr windowHandle = new WindowInteropHelper(this).Handle; |