当前位置: 代码迷 >> Java相关 >> 我用的那个按钮没有显示
  详细解决方案

我用的那个按钮没有显示

热度:87   发布时间:2007-01-04 18:42:28.0
我用的那个按钮没有显示

import javax.swing.JFrame;
import java.awt.FlowLayout;
import javax.swing.JButton;
class Aio extends JFrame{
JButton jButton1=new JButton("ai");
JButton jButton2=new JButton();
FlowLayout flowLayout1=new FlowLayout();
Aio(){
super("12");
setSize(700,500);
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
jButton2.setToolTipText("esione");
this.getContentPane().setLayout(flowLayout1);
this.getContentPane().add(jButton1);
this.getContentPane().add(jButton2);
setVisible(true);
}
public static void main(String args[]){
Aio aio=new Aio();
}
}
在这里的那个jButton2的标题显示不出来,不知为什么?

搜索更多相关的解决方案: 按钮  

----------------解决方案--------------------------------------------------------

请问你有设置jButton2的标题吗?.
----------------解决方案--------------------------------------------------------
我是在别的程序显示不出,写了这个简单的也不能用void setToolTipText(String)方法
----------------解决方案--------------------------------------------------------
JButton jButton2=new JButton();
你的构造函数里没有设置jButton2的标题..或者..你没有jButton2.setText();
----------------解决方案--------------------------------------------------------
是的,就是jButton2那个标题“esione”不能显示
----------------解决方案--------------------------------------------------------
jButton2.setText("esione");
----------------解决方案--------------------------------------------------------
你误会的,我想问的是为什么这个方法不行?
----------------解决方案--------------------------------------------------------

你不是说标题吗?.


----------------解决方案--------------------------------------------------------
我运行了你的代码..有什么问题?..我这里..一点问题都没..
----------------解决方案--------------------------------------------------------

void setToolTiTxet(String txet)这个用法可以用的吗?我的书上是这样说的,可我就是用不了!


----------------解决方案--------------------------------------------------------
  相关解决方案