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);

arrow
arrow
    全站熱搜

    黃彥霖 發表在 痞客邦 留言(0) 人氣()