SimpleButton 색상 변경
SimpleButton의 색을 변경하려면 LookAndFeel.Style을 Flat, Ultra Flat 또는 Style3D로 설정해야합니다.
this.Exit_btn.LookAndFeel.Style = LookAndFeelStyle.Flat;
this.Exit_btn.LookAndFeel.UseDefaultLookAndFeel = false;
this.Exit_btn.Appearance.BackColor = Color.White;
this.Exit_btn.Appearance.Options.UseBackColor = true;
'Programing > C#' 카테고리의 다른 글
C# DataSet을 이용해서 파일정보(이름, 확장자, 수정일, 크기) 가져오기 (0) | 2022.02.09 |
---|---|
C# Panel에 간단하게 타원(Rectangle)그리기 (0) | 2019.12.17 |
[DevExpress] XtraMessageBox DialogResult Settings (0) | 2018.10.04 |
Datetime, DatetimePicker을 string으로 변환 (0) | 2018.10.01 |
아이디 등록시 특수문자 체크 (0) | 2018.09.18 |