简体   繁体   English

Java Swing在单击要删除的jpanel中存在的Jbutton的同时删除Jpanel

[英]Java Swing Removing Jpanel while clicking on Jbutton which is present in that jpanel which I want to remove

I am creating a GUI using Netbeans and my question is "how to remove the jpanel"...the hierarchical order as it is present Jframe->Jscrollpane->Jpanel->Jbutton. 我正在使用Netbeans创建一个GUI,我的问题是“如何删除jpanel” ...存在的层次结构顺序Jframe-> Jscrollpane-> Jpanel-> Jbutton。 By clicking on the Jbutton I want to remove all components of the jpanel including the Jbutton(on which I am clicking) and the panel itself. 通过单击Jbutton,我想删除jpanel的所有组件,包括Jbutton(我单击的是它)和面板本身。 Please do help.Urgent.THanks in advance 请先进行帮助。

-Sayantan -Sayantan

private void b4ActionPerformed(java.awt.event.ActionEvent evt) {                                   
final JPanel jp;
JTextField tf,of1,of2,xf,yf;
int i=1;
int m=(int)sp3.getValue();
JButton jb;
jp=new JPanel();
//jp.setLayout(new GridBagLayout());
 DesignGridLayout layout = new DesignGridLayout(jp); 
  jsp2.getViewport().add(jp);  
   while(i<=m){
     tf=new JTextField(5);
     of1=new JTextField(5);
     of2=new JTextField(5);
    layout.row().grid(new JLabel("Type:")).indent(9).add(tf).grid(new     JLabel("Length:")).indent().add(of1).grid(new JLabel("Breadth:")).indent().add(of2).empty();
     fields1.add(tf);
     fields1.add(of1);
      fields1.add(of2);        
       xf=new JTextField(5);
     yf=new JTextField(5);
  layout.row().grid(new JLabel("X-axis:")).indent(9).add(xf).grid(new JLabel("Y-axis:")).indent().add(yf).empty(2);
      fields1.add(xf);
      fields1.add(yf);
      i++;
  }
  jb=new JButton("Submit");
  jb.addActionListener(new ActionListener() {

        public void actionPerformed(ActionEvent e)
        {
        for(JTextField field: fields1){
        String s=field.getText();
        lbr.setText(lbr.getText()+s);
        }
         lb3.setVisible(false);
       sp3.setVisible(false);
        b4.setVisible(false);
       //jp.setVisible(false);
       //jp.removeAll();
      // jp.revalidate();

      //jp.repaint();

      // jsp2.remove(jp);
      //jsp2.revalidate();
      //jsp2.repaint();
      }
    });
    layout.emptyRow();
    layout.row().right().add(jb);
   jp.revalidate();
   jp.repaint();
   // jsp2.revalidate();
   //jsp2.repaint();
   }                 

Note: I am using DesignGridLayout package. 注意:我正在使用DesignGridLayout包。

This works: 这有效:

import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

public class ScratchSpace {

    public static void main(String[] args) {
        final JPanel panel = new JPanel();
        panel.setOpaque(true);
        panel.setBackground(Color.YELLOW);
        panel.add(new JButton(new AbstractAction("Kill me") {
            @Override
            public void actionPerformed(ActionEvent e) {
                panel.removeAll();
                panel.revalidate();
                panel.repaint();
            }
        }));

        final JFrame frame = new JFrame();
        frame.setContentPane(panel);
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
        frame.setVisible(true);
    }

}

I want to remove all components of the jpanel including the Jbutton(on which I am clicking) and the panel itself. 我想删除jpanel的所有组件,包括Jbutton(我在其上单击)和面板本身。

Then you need code something like: 然后,您需要类似以下代码:

JButton button = (JButtton)event.getSource();
JPanel grandparent = button.getParent().getParent();
grandparent.removeAll();
grandparent.revalidate();
grandparent.repaint();

Although I question any code where I see a removeAll() . 虽然我在看到removeAll()地方询问任何代码。 You might look into using a Card Layout . 您可能会考虑使用Card Layout

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM