当前位置:  技术问答>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) 
以下的部分就不会写了,要在写一个窗体,也有按钮功能。

欢迎大家指教

|
new一个对象啊!你到底在干什么,有不是不会写,为什么又问这个啊?

    
 
 

您可能感兴趣的文章:

 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3