当前位置: 技术问答>java相关
Swing
来源: 互联网 发布时间:2015-10-06
本文导语: 我想实现以下功能,请大家帮忙。 首先,出现一个窗体,里面有JLabel,JTextField,JTextArea 和JButton 1,2,3 按下Button 3后,又出现一个窗体,里面也有几个Button,按下他们能出现对话框即可。 请帮帮忙! 谢谢! im...
我想实现以下功能,请大家帮忙。
首先,出现一个窗体,里面有JLabel,JTextField,JTextArea 和JButton 1,2,3
按下Button 3后,又出现一个窗体,里面也有几个Button,按下他们能出现对话框即可。
请帮帮忙!
谢谢!
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.lang.*;
import java.io.*;
import java.util.*;
import java.text.*;
import javax.swing.text.*;
public class temp extends JFrame implements ActionListener {
private JButton cont = new JButton("继续");
private JButton cancel = new JButton("取消");
private JButton quit = new JButton("退出");
public temp1() {
super("航海通告");
setDefaultCloseOperation(EXIT_ON_CLOSE);
getContentPane().add(cont);
getContentPane().add(cancel);
getContentPane().add(quit);
cont.addActionListener(this);
cancel.addActionListener(this);
quit.addActionListener(this);
read.addActionListener(this);
this.setSize(600,450);
}
public static void main(String[] args) {
temp tt = new temp();
tt.show();
}
public void actionPerformed(ActionEvent evt){
Object source = evt.getSource();
if (source ==connt) //add code to accomplish this button click.
if (source == cancel) //add code to accomplish this button click.
if (source == quit)
以下的部分就不会写了,要在写一个窗体,也有按钮功能。
欢迎大家指教
首先,出现一个窗体,里面有JLabel,JTextField,JTextArea 和JButton 1,2,3
按下Button 3后,又出现一个窗体,里面也有几个Button,按下他们能出现对话框即可。
请帮帮忙!
谢谢!
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.lang.*;
import java.io.*;
import java.util.*;
import java.text.*;
import javax.swing.text.*;
public class temp extends JFrame implements ActionListener {
private JButton cont = new JButton("继续");
private JButton cancel = new JButton("取消");
private JButton quit = new JButton("退出");
public temp1() {
super("航海通告");
setDefaultCloseOperation(EXIT_ON_CLOSE);
getContentPane().add(cont);
getContentPane().add(cancel);
getContentPane().add(quit);
cont.addActionListener(this);
cancel.addActionListener(this);
quit.addActionListener(this);
read.addActionListener(this);
this.setSize(600,450);
}
public static void main(String[] args) {
temp tt = new temp();
tt.show();
}
public void actionPerformed(ActionEvent evt){
Object source = evt.getSource();
if (source ==connt) //add code to accomplish this button click.
if (source == cancel) //add code to accomplish this button click.
if (source == quit)
以下的部分就不会写了,要在写一个窗体,也有按钮功能。
欢迎大家指教
|
new一个对象啊!你到底在干什么,有不是不会写,为什么又问这个啊?
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。