■ Form 클래스에서 포커스 설정을 방지하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
using System; using System.Runtime.InteropServices; using System.Windows.Forms; /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Static //////////////////////////////////////////////////////////////////////////////// Private #region 윈도우 보여주기 - ShowWindow(windowHandle, showCommand) /// <summary> /// 윈도우 보여주기 /// </summary> /// <param name="windowHandle">윈도우 핸들</param> /// <param name="showCommand">보여주기 명령</param> /// <returns>처리 결과</returns> [DllImport("user32.dll")] private static extern bool ShowWindow(IntPtr windowHandle, int showCommand); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Field ////////////////////////////////////////////////////////////////////////////////////////// Private #region Field /// <summary> /// WM_SHOWNOACTIVATE /// </summary> private const int WM_SHOWNOACTIVATE = 4; #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); ShowWindow(Handle, WM_SHOWNOACTIVATE); } #endregion } |