JPanel Example ■ Panelvemo.1ava 使用标签来给面板加上图片。 2021/2/24 北京理工大学计算机系(共62页)
2021/2/24 北京理工大学计算机系(共62页) 16 JPanel ◼ PanelDemo.java 使用标签来给面板加上图片
JOptionPane (1) OptDemo. java:显示对话框 Plenty of spam Are you getting enough? 确定 2021/2/24 北京理工大学计算机系(共62页) 17
2021/2/24 北京理工大学计算机系(共62页) 17 JOptionPane(1) ◼ OptDemo.java:显示对话框
JOptionPane(2) Icon picon new ImageIcon("spam.jpg) JLabel jl= new JLabel( Are you getting enough? picon, JLabel CENTER) JOption Pane showMessageDialog( iframe,// parent il,//Object to display Plenty of spam JOptionPane QUESTION_ MESSAGE 2021/2/24 北京理工大学计算机系(共62页)
2021/2/24 北京理工大学计算机系(共62页) 18 JOptionPane(2) Icon spicon = new ImageIcon("spam.jpg"); JLabel jl = new JLabel("Are you getting enough?", spicon, JLabel.CENTER); JOptionPane.showMessageDialog( jframe, // parent jl, // Object to display "Plenty of spam", JOptionPane.QUESTION_MESSAGE );
JScrollPane (1) ScrollDemo.java Example 2021/2/24 北京理工大学计算机系(共62页)
2021/2/24 北京理工大学计算机系(共62页) 19 JScrollPane(1) ◼ ScrollDemo.java
JScrollPane(2) MyJPanel mip new MyJPanelo JScrollPane jsp new JScrollPane( mjp) jsp. setPreferredSize (new Dimension(150, 150) jframe. getContentPaneo add gsp); 2021/2/24 北京理工大学计算机系(共62页)
2021/2/24 北京理工大学计算机系(共62页) 20 JScrollPane(2) MyJPanel mjp = new MyJPanel(); JScrollPane jsp = new JScrollPane( mjp ); jsp.setPreferredSize( new Dimension(150, 150)); jframe.getContentPane().add(jsp);