0

私の質問は次のようなものです: JTable Cell Update does not work .

ただし、上記のリンクで指定された JTable の代わりに JDialog を使用しています。JDialog を拡張するカスタム クラスがあります。そのダイアログのテキスト コンポーネントとして JEditorPane を使用し、単純な [OK] ボタンと [キャンセル] ボタンを作成します。問題は、JEdiorPane に何かを入力して [OK] ボタンを押すと、JDialog からフォーカスを移動するか、Tab/ENTER を押すまで値がテキスト コンポーネントに適用されないことです。

OKボタンを押すとすぐに、編集が完了したことをコンテナに通知したい。要するに、明示的に stopCellEditing() に似た機能が必要です。どうやってやるの?

4

1 に答える 1

1

正しく動作しているように見え、説明したのと同じことを行うこの例を参照してください。

import java.awt.BorderLayout;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JDialog;
import javax.swing.JEditorPane;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
import javax.swing.JScrollPane;
import javax.swing.SwingUtilities;

public class TestEditorPaneDialog {

    public void init() {
        final JFrame frame = new JFrame();
        JButton clickMe = new JButton("Click me");
        clickMe.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                showDialog(frame);
            }
        });
        frame.add(clickMe);
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.setSize(400, 300);
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        showDialog(frame);
    }

    private void showDialog(final JFrame frame) {
        final JDialog dialog = new JDialog(frame, true);
        final JEditorPane pane = new JEditorPane();
        pane.setText("Type something here");
        JPanel south = new JPanel();
        JPanel buttons = new JPanel(new GridLayout(1, 0, 10, 10));
        JButton ok = new JButton("OK");
        ok.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                dialog.dispose();
                JOptionPane.showMessageDialog(frame, "You have typed in: " + pane.getText());
            }
        });
        JButton cancel = new JButton("Cancel");
        cancel.addActionListener(new ActionListener() {

            @Override
            public void actionPerformed(ActionEvent e) {
                dialog.dispose();
            }
        });
        buttons.add(ok);
        buttons.add(cancel);
        south.add(buttons);
        dialog.add(new JScrollPane(pane));
        dialog.add(south, BorderLayout.SOUTH);
        dialog.setSize(250, 150);
        dialog.setLocationRelativeTo(frame);
        dialog.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {
            @Override
            public void run() {
                new TestEditorPaneDialog().init();
            }
        });
    }
}
于 2013-09-12T09:28:08.703 に答える