SimpleButton 색상 변경


SimpleButton의 색을 변경하려면  LookAndFeel.StyleFlat, 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;



+ Recent posts