简体   繁体   中英

Java button's appearance style during holding down

// plain green button
flatButton.setBorderPainted (false);
flatButton.setBackground (Color.green);
flatButton.setSize (100, 75);

While holding the button, its color change to blue. How to make keep green color during holding down?

flatButton.setContentAreaFilled( false );

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM