java 怎么添加按钮控制窗体开始
这个是我的窗体的代码importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publicclassMyWi...
这个是我的窗体的代码
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class MyWindow extends JFrame{
MyWindow()
{Container c=this.getContentPane();//获取面板容器
c.add(new TetrisPanel()); //添加线程
this.setBounds(400, 200, 500, 500);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
MyWindow()
{Container c=this.getContentPane();//获取面板容器
c.add(new TetrisPanel());
this.setBounds(400, 200, 500, 500);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
MyWindow DB=new MyWindow();//创建实例
DB.addWindowListener(new WindowAdapter()//添加窗口关闭处理方法,这个我看不懂
{public void windowClosing(WindowEvent e){System.exit(0);
}});
}
}
就是怎么在窗体的下方添加一个按钮控制线程TetrisPanel的开始
代码中间多了一段重复的无视吧复制按多了一次 展开
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class MyWindow extends JFrame{
MyWindow()
{Container c=this.getContentPane();//获取面板容器
c.add(new TetrisPanel()); //添加线程
this.setBounds(400, 200, 500, 500);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
MyWindow()
{Container c=this.getContentPane();//获取面板容器
c.add(new TetrisPanel());
this.setBounds(400, 200, 500, 500);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
this.setVisible(true);
}
public static void main(String[] args) {
// TODO Auto-generated method stub
MyWindow DB=new MyWindow();//创建实例
DB.addWindowListener(new WindowAdapter()//添加窗口关闭处理方法,这个我看不懂
{public void windowClosing(WindowEvent e){System.exit(0);
}});
}
}
就是怎么在窗体的下方添加一个按钮控制线程TetrisPanel的开始
代码中间多了一段重复的无视吧复制按多了一次 展开
1个回答
展开全部
你这是基础太差,就算跟你说了也意义不大,建议先把基础学好
追问
你直接说怎么加就行了呗,就是想通过实际事例去理解
追答
怎么加button你应该会把 简单的来写就是
this.add(btn);//btn先new出来
然后给按钮添加事件
btn.addActionListener(new ActionListener() {
//这个xx是ActionListener的未实现方法 具体用eclipse生成就可以了
xx() {
//这里启动你的线程不就行了?
}
});
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |