public class mainFrame extends JFrame{
JLabel jl = new JLabel("用户名称:");
JTextField jtf = new JTextField();
JPanel jp_group = new JPanel();
public loginFrame() {
try {
jbInit();com.hrkj.hrkjkf.common.mysession.dataTrf.getValue("main");
} catch (Exception exception) {
exception.printStackTrace();
}
}
private void jbInit() throws Exception {
jp_group.add(jl);
jp_group.add(jl);
this.add(jtf)
this.setTitle("窗体");
this.setSize(265, 185);
}
public static void main(String[] args) {
mainFrame mf = new mainFrame();
mf.setVsible(true);
}
}
用JLabel 或Label
至于位置 请参考布局格式
JLable