close
import javax.swing.*;
JFrame f = new JFrame("標題");
f.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
f.setSize(400, 300);
f.setVisible(true);
Container cp =f.getContentPane();
cp.setLayout(null);
JLabel l = new JLabel("標籤一");
l.setBounds(50, 50, 100, 30);
cp.add(l);
全站熱搜
留言列表