Jframe中添加组件

前端之家收集整理的这篇文章主要介绍了Jframe中添加组件前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

由于之前习惯用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相关文章