public class JInternalFrameKnow extends JInternalFrame
{
public JInternalFrameKnow()
{
this.setBounds(200, 200, 300, 300);
this.setTitle("子窗体 ");
this.setDefaultCloseOperation(JFrame.DISPOSE_ON_CLOSE);
this.setClosable(true);
// this.getLayout();
}
}
1.窗体要点一:
2.窗体要点二: