frame.setBackground(Color.BLUE)です。 |
JFrameには、java Colorクラス:
- RGB値
- brighterなどのメソッドを使用して適用できるトリックが含まれています。 暗いまたは明るい
コンポーネントの色を取得する他のメソッドもあります。
JFrameの例 setBackground(color)
このコードをIDEでテストできます:
import java.awt.Color;
import java.awt.Dimension;
import javax.swing.JFrame;
public class Test extends JFrame{
public static void main(String[] args) {
JFrame frame = new JFrame("JFrame test");
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setLocationRelativeTo(null);
frame.setPreferredSize(new Dimension(400, 300));
frame.getContentPane().setBackground(Color.ORANGE);
frame.pack();
frame.setVisible(true);
}
}
Commentaires (0)
Laisser un commentaire
Connectez-vous pour commenter
Rejoignez la discussion et partagez vos connaissances avec la communauté
Chargement des commentaires...