请问怎么在swing中添加按钮和文本框,然后点击这个按钮后读取文本框里的内容并将自己和文本框删除?

求修改代码:button.setBounds(450,0,125,25);textField.setBounds(0,0,400,25);button.addAction... 求修改代码:

button.setBounds(450,0,125,25);
textField.setBounds(0,0,400,25);
button.addActionListener(new ActionListener() {

@Override
public void actionPerformed(ActionEvent e) {
String text = "";
text = textField.getText();
container.remove(textField);
container.remove(button);
}

});
container.add(textField);
container.add(button);
add();
展开
 我来答
btboy1978
2016-09-15 · TA获得超过2015个赞
知道大有可为答主
回答量:2950
采纳率:57%
帮助的人:966万
展开全部
import java.awt.BorderLayout;
import java.awt.EventQueue;

import javax.swing.JFrame;
import javax.swing.JPanel;
import javax.swing.border.EmptyBorder;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JTextField;
import javax.swing.JLabel;

public class FrameTest extends JFrame {

private JPanel contentPane;
private JTextField textField;
private  JLabel lblNewLabel;

/**
 * Launch the application.
 */
public static void main(String[] args) {
EventQueue.invokeLater(new Runnable() {
public void run() {
try {
FrameTest frame = new FrameTest();
frame.setVisible(true);
} catch (Exception e) {
e.printStackTrace();
}
}
});
}

/**
 * Create the frame.
 */
public FrameTest() {
setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
setBounds(100, 100, 450, 300);
contentPane = new JPanel();
contentPane.setBorder(new EmptyBorder(5, 5, 5, 5));
setContentPane(contentPane);
contentPane.setLayout(null);

JButton btnNewButton = new JButton("确认");
btnNewButton.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent arg0) {
String string = textField.getText();
if(!string.equals("")){
     lblNewLabel.setText(string);
     contentPane.remove(textField);
     contentPane. remove(btnNewButton);
      contentPane.updateUI();
}
}
});
btnNewButton.setBounds(60, 10, 297, 50);
contentPane.add(btnNewButton);

textField = new JTextField();
textField.setBounds(60, 70, 297, 85);
contentPane.add(textField);
textField.setColumns(10);

lblNewLabel= new JLabel("");
lblNewLabel.setBounds(60, 165, 297, 56);
contentPane.add(lblNewLabel);
}
}
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式