1

如何在 JFrame 中反映图片/图像文件?javax.swing 或 java.awt 中是否有任何组件?

JFrame frame = new JFrame();
frame.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
frame.setLayout( new GroupLayout( getContentPane() ) );
frame.setSize( new Dimension( 600, 480 ) );
frame.setLocationRelativeTo( null ); 
frame.getContentPane().setBackground( Color.LIGHT_GRAY );

// add Image container !!!

frame.setVisible( true )
4

0 回答 0