Java单击确定按钮跳转到另一个界面的代码。调到另一个类的界面
packageXiangmu9;importjava.awt.*;importjava.awt.event.*;importjavax.swing.*;publiccla...
package Xiangmu9;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class T1 extends JFrame implements ActionListener
{
CheckboxGroup box;
Checkbox[] ch=new Checkbox[8];
JButton button;
JPanel p1,p2;
public T1()
{
super("选题");
p1=new JPanel();
p2=new JPanel();
p1.setLayout(new GridLayout(2,4));
box=new CheckboxGroup();
Checkbox[] ch=new Checkbox[8];
ch[0]=new Checkbox("第一单元",box,true);
ch[1]=new Checkbox("第二单元",box,true);
ch[2]=new Checkbox("第三单元",box,true);
ch[3]=new Checkbox("第四单元",box,true);
ch[4]=new Checkbox("第五单元",box,true);
ch[5]=new Checkbox("第六单元",box,true);
ch[6]=new Checkbox("第七单元",box,true);
ch[7]=new Checkbox("第八单元",box,true);
p1.add(ch[0]);
p1.add(ch[1]);
p1.add(ch[2]);
p1.add(ch[3]);
p1.add(ch[4]);
p1.add(ch[5]);
p1.add(ch[6]);
p1.add(ch[7]);
JButton button=new JButton("确定");
button.addActionListener(this);
p2.add(button);
p1.setSize(400, 100);
button.setBounds(280, 120, 80, 30);
p2.setLayout(null);
this.add(p1);
this.add(p2);
this.setSize(400,200);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String args[])
{
new T1();
}
public void actionPerformed(ActionEvent e)
{
Object temp = e.getSource();
if(temp==button)
{
new Main();
}
}
} 展开
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class T1 extends JFrame implements ActionListener
{
CheckboxGroup box;
Checkbox[] ch=new Checkbox[8];
JButton button;
JPanel p1,p2;
public T1()
{
super("选题");
p1=new JPanel();
p2=new JPanel();
p1.setLayout(new GridLayout(2,4));
box=new CheckboxGroup();
Checkbox[] ch=new Checkbox[8];
ch[0]=new Checkbox("第一单元",box,true);
ch[1]=new Checkbox("第二单元",box,true);
ch[2]=new Checkbox("第三单元",box,true);
ch[3]=new Checkbox("第四单元",box,true);
ch[4]=new Checkbox("第五单元",box,true);
ch[5]=new Checkbox("第六单元",box,true);
ch[6]=new Checkbox("第七单元",box,true);
ch[7]=new Checkbox("第八单元",box,true);
p1.add(ch[0]);
p1.add(ch[1]);
p1.add(ch[2]);
p1.add(ch[3]);
p1.add(ch[4]);
p1.add(ch[5]);
p1.add(ch[6]);
p1.add(ch[7]);
JButton button=new JButton("确定");
button.addActionListener(this);
p2.add(button);
p1.setSize(400, 100);
button.setBounds(280, 120, 80, 30);
p2.setLayout(null);
this.add(p1);
this.add(p2);
this.setSize(400,200);
this.setVisible(true);
this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
}
public static void main(String args[])
{
new T1();
}
public void actionPerformed(ActionEvent e)
{
Object temp = e.getSource();
if(temp==button)
{
new Main();
}
}
} 展开
展开全部
public void actionPerformed(ActionEvent e)
{
if(e.getSource() == button)
//或者e.getActionCommand().equals("确定')
{
Login window = new Login();
window.frame.setVisible(true);
}
}
这样就可以了。但是要在Login类中定义一个全局变量frame,即:private JFrame frame,并且记得初始化,frame =new JFrame();
{
if(e.getSource() == button)
//或者e.getActionCommand().equals("确定')
{
Login window = new Login();
window.frame.setVisible(true);
}
}
这样就可以了。但是要在Login类中定义一个全局变量frame,即:private JFrame frame,并且记得初始化,frame =new JFrame();
参考资料: //
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询