ProfessionalColorTable
-
[WinForm - ProfessionalColorTable] Custom MenuStripC# 2021. 10. 29. 13:00
ProfessionalColorTable 사용하여 WinForm에서 기본 제공되는 Menu 컨트롤의 색상을 변경하는 방법입니다. 1. 비쥬얼 스타일 활성화 Program.cs에 아래 코드를 추가하여 비쥬얼 스타일을 Enable 처리합니다. Application.EnableVisualStyles(); 2. ColorTable 적용 ProfessionalColorTable 상속 받은 CustomProfessionalColorTable Class를 생성 후 필요한 옵션의 프로퍼티를 override 하고 변경하고 싶은 영역을 변경합니다. public class CustomProfessionalColorTable : ProfessionalColorTable { // 재정의 생성을 통해 프로퍼티 override 처..