由于之前习惯用VB的组件了,看了100多页JAVA的书头也疼了,像做点类似form的东西。
于是从jframe着手。
aWindow.getContentPane().setLayout(null);
aWindow.add(aButton);
aButton.setText("aaa");
aButton.setBounds(10,10,70,30);
原来是必须要用getcontentpane来获得
原文链接:https://www.f2er.com/vb/262662.html由于之前习惯用VB的组件了,看了100多页JAVA的书头也疼了,像做点类似form的东西。
于是从jframe着手。
aWindow.getContentPane().setLayout(null);
aWindow.add(aButton);
aButton.setText("aaa");
aButton.setBounds(10,10,70,30);
原来是必须要用getcontentpane来获得
原文链接:https://www.f2er.com/vb/262662.html