상세 컨텐츠

본문 제목

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

카테고리 없음

by 메타샤워 2023. 7. 25. 16:26

본문

 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;
            }
        }