import java.awt.Color; import javax.swing.*; public class SwingTest { public static void main(String[] args) { JFrame frame = new JFrame(); frame.setBounds(50, 50, 300, 300); frame.setLayout(null); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); JInternalFrame iframe = new JInternalFrame("iframe", true); iframe.setBackground(Color.RED); frame.getContentPane().add(iframe); iframe.setBounds(0, 0, 100, 100); iframe.setVisible(true); frame.setVisible(true); } }