■ Form 클래스의 ShowWithoutActivation 속성을 사용해 포커스 설정을 방지하는 방법을 보여준다.
▶ 예제 코드 (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 |
using System.Windows.Forms; /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Property ////////////////////////////////////////////////////////////////////////////////////////// Protected #region 활성화 없이 보여주기 여부 - ShowWithoutActivation /// <summary> /// 활성화 없이 보여주기 여부 /// </summary> protected override bool ShowWithoutActivation { get { return true; } } #endregion ... } |