4

OKボタンがクリックされたときにオブジェクトを返すスイングのJDialogを作成することは可能ですか?

たとえば、ダイアログボックスには、住所を構成するコンポーネント(通りの名前、国など)を含むテキストフィールドがあります。

[OK]ボタンをクリックすると、Addressオブジェクトが返されます。

これが可能だと思ったのは、このためです。しかし、私が欲しいのは、私が上で述べたようなものです。

これを行う方法についてのポインタは非常に役立ちます。

4

3 に答える 3

6

以前の人々が提案したように:JOptionPaneはあなたがやりたいことをするのを助けることができます。しかし、これを最初から実装することにした場合は、これがまさにあなたが望むことを実行するSSCCEです(まあ、それは文字列を返しますが、あなたのニーズに合うように簡単に変更できます):

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

class MyDialog
{
    private JFrame parent;
    private JDialog dialog;
    private String information;

    MyDialog (JFrame parent)
    {
        this.parent = parent;
    }

    private JPanel createEditBox ()
    {
        JPanel panel = new JPanel ();

        JLabel dialogtitlelabel = new JLabel ("Enter Info");
        panel.add (dialogtitlelabel);
        dialogtitlelabel.setFont (new Font ("Arial", Font.BOLD, 20));


        final JTextArea informationtxt = new JTextArea ();
        informationtxt.setEditable (true);
        informationtxt.setLineWrap (true);
        informationtxt.setWrapStyleWord (true);

        JScrollPane jsp = new JScrollPane (informationtxt);
        jsp.setVerticalScrollBarPolicy (ScrollPaneConstants.VERTICAL_SCROLLBAR_AS_NEEDED);
        jsp.setHorizontalScrollBarPolicy (ScrollPaneConstants.HORIZONTAL_SCROLLBAR_NEVER);
        jsp.setPreferredSize (new Dimension (180, 120));
        panel.add (jsp);

        JButton btnok = new JButton ("OK");
        panel.add (btnok);

        JButton btncancel = new JButton ("Cancel");
        panel.add (btncancel);

        btnok.addActionListener (new ActionListener ()
        {
            @Override public void actionPerformed (ActionEvent a)
            {
                if (informationtxt.getText () == null || informationtxt.getText ().isEmpty ())
                {
                    return;
                }

                information = informationtxt.getText ();

                dialog.dispose ();
            }
        });

        btncancel.addActionListener (new ActionListener ()
        {
            @Override public void actionPerformed (ActionEvent a)
            {
                dialog.dispose ();
            }
        });

        return panel;
    }

    void display ()
    {
        final int DWIDTH = 200;
        final int DHEIGHT = 240;

        dialog = new JDialog (parent, "Information", true);
        dialog.setSize (DWIDTH, DHEIGHT);
        dialog.setResizable (false);
        dialog.setDefaultCloseOperation (JDialog.DISPOSE_ON_CLOSE);

        dialog.setContentPane (createEditBox ());

        dialog.setLocationRelativeTo (parent);
        dialog.setVisible (true);
    }

    String getInformation ()
    {
        return information;
    }
}

public class ReturningDialogTest
{
    public static void main (String[] args)
    {
        SwingUtilities.invokeLater (new Runnable ()
        {
            public void run ()
            {   
                final JFrame frame = new JFrame ();
                frame.setDefaultCloseOperation (JFrame.DISPOSE_ON_CLOSE);

                final JPanel panel = new JPanel ();

                JButton btn = new JButton ("show dialog");

                panel.add (btn);

                final JLabel lab = new JLabel ("");

                panel.add (lab);

                frame.add (panel);

                btn.addActionListener (new ActionListener ()
                {
                    public void actionPerformed (ActionEvent e)
                    {
                        MyDialog diag = new MyDialog (frame);
                        diag.display ();

                        String info = diag.getInformation ();

                        lab.setText (info);

                        frame.pack ();
                    }
                });

                frame.setLocationRelativeTo (null);
                frame.pack ();
                frame.setVisible (true);
            }
        });
    }
}

そのテキスト領域に入力した内容は、[OK]を押すとメインウィンドウに表示され、機能することを証明します:)。

于 2012-05-14T17:04:56.833 に答える
5

アドレスを保持するGUIコンポーネントをパネルに配置します。ダイアログにパネルを提供します。ダイアログが閉じたら、パネル上のコンポーネントから値を読み取り、Addressオブジェクトを作成します。

于 2012-05-14T16:41:57.463 に答える
4

OKボタンがクリックされたときにオブジェクトを返すスイングのJDialogを作成することは可能ですか?

これがJOptionPaneが存在する理由です

[OK]ボタンをクリックすると、Addressオブジェクトが返されます。

JOptionPaneの機能をご覧ください

于 2012-05-14T16:43:57.540 に答える