본문 바로가기

카테고리 없음

[C#] Form 폼이 포커스는 생기지 않은채 최상위 유지하기

 protected override bool ShowWithoutActivation
        {
            get { return true; }
        }
 
        private const int WS_EX_TOPMOST = 0x00000008;
        protected override CreateParams CreateParams
        {
            get
            {
                CreateParams createParams = base.CreateParams;
                createParams.ExStyle |= WS_EX_TOPMOST;
                return createParams;
            }
        }