[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; } }
카테고리 없음
2023. 7. 25. 16:26