2

私は 1.TextArea 2.TextField を追加してから、コンテナーに JButton を連続して追加し始めました...、今は JRadioButton を使用して、このコードを使用してコンテナーから JButton を削除したいです

i=0;
k=0;
while(!birdButton[i].isSelected()){
    i++;    
}   
System.out.println(i);
k=i+2;
list.removeElementAt(i);
listName.removeElementAt(i);
System.out.println(k);
c.getContentPane().remove(k);

しかし、最初のラジオボタンを選択すると、k=i+2; のため、最初の JButton を削除する必要があります。これを削除する代わりに、TextArea(最初のもの)を削除します。3 番目のラジオボタンを選択すると、1 番目の JButton が削除されます。誰が問題が何であるかを教えてもらえますか? またSystem.out.println(i); System.out.println(k);、値を出力していません....ここにコードがあります

public class RadioDemo implements ActionListener {

    String buttonName;
    JPanel radioPanel = new JPanel();
    ButtonGroup group = new ButtonGroup();
    Enumeration enl;
    int result;
    ActionEvent e;
    JRadioButton birdButton[];
    int i, k;

    Vector<String> listName;
    Vector<JComponent> list;
    Container c;

    public RadioDemo(Vector<String> listName,Vector<JComponent> list,Container c) {

        birdButton=new JRadioButton[listName.size()];
        this.listName=listName;
        this.c=c;
        this.list=list;

        i = 0;
        for (String buttonName : listName){
               birdButton[i] = new JRadioButton(buttonName);
               birdButton[i].setActionCommand(buttonName);
               group.add(birdButton[i]);
               birdButton[i].addActionListener(this);
               radioPanel.add(birdButton[i]);
               i++;
         }

        birdButton[0].setSelected(true);
        radioPanel.setLayout(new BoxLayout

        (radioPanel,BoxLayout.Y_AXIS));
                                    //birdButton.setBorder

        (BorderFactory.createEmptyBorder(5,5,5,5));
        result = JOptionPane.showConfirmDialog(null, radioPanel, "Please choose", JOptionPane.OK_CANCEL_OPTION);                
        show();
    }

    /** Listens to the radio buttons. */
    public void actionPerformed(ActionEvent e) {
        this.e = e;
    }

    public void show() {
        if (result == JOptionPane.OK_OPTION) {
            i = 0;
            k = 0;
            while (!birdButton[i].isSelected()) {
                i++;

            }
            System.out.println(i);
            k = i + 2;
            list.removeElementAt(i);
            listName.removeElementAt(i);
            System.out.println(k);
            c.getContentPane().remove(k);
            c.getContentPane().validate();

            // System.out.println(e.getActionCommand());
            // c.getContentPane().rePaint();
        }
    }

}
4

1 に答える 1

6

Containerによって返されるgetContentPane()は、デフォルトではcontentPane、最上位のコンテナによってJRootPane管理されるです。「便宜上、メソッドとそのバリアントは、必要に応じて転送するようにオーバーライドされています」が、コンポーネント インデックスのフレームの内部使用についてアプリオリに知る方法はありません。JFrameaddremovesetLayoutcontentPane

画像

代わりに、自分JComponentでフレームに追加して操作します。JPanelが一般的な選択です。

CardLayout補遺: のような別のレイアウトも検討してください

于 2012-08-01T23:46:31.400 に答える