0
void NewJDialogcallone(JFrame frame) 
{
    location = frame.getLocationOnScreen();
    int x = location.x;
    int y = location.y;
    dialog.setLocation(x, y);
    dialog.setLocationRelativeTo(frame);
    dialog.setVisible(true);
    dialog.setAlwaysOnTop(true);
    dialog.addComponentListener(this);
}

public void componentMoved(ComponentEvent e,?????) 
{
    JOptionPane.showConfirmDialog (null,
                                "This is the \"Ok/Cancel\"message dialog box.",
                                "",
                                JOptionPane.OK_CANCEL_OPTION);
}

フレーム オブジェクトを使用して、ダイアログ ボックスが親フレームに対して相対的に移動するようにします。つまり、親フレームを移動すると、ダイアログ ボックスも一緒に移動しdialog.setLocationRelativeTo(//parent frame object//)ます。親フレーム オブジェクトがある場合にのみ可能です。

このウィンドウの動作を取得する方法があれば、助けてください。

4

2 に答える 2

2

finalメソッド パラメータの前にキーワードを追加するだけですJFrame frame

 void NewJDialogcallone(final JFrame frame) 
 ...

また、これを使用しないことをお勧めします。

dialog.setAlwaysOnTop(true);

ユーザーエクスペリエンスにとって本当に迷惑だからです。通常、これは、正しいフレーム/ダイアログの所有者を渡すことによって、ダイアログを適切にインスタンス化していないことを示しています。

以下は、setAlwayOnTop() を使用せずにウィンドウの位置を同期する例です。

import java.awt.Point;
import java.awt.event.ComponentAdapter;
import java.awt.event.ComponentEvent;

import javax.swing.JDialog;
import javax.swing.JFrame;
import javax.swing.SwingUtilities;

public class Test {

    protected void initUI() {
        final JFrame frame = new JFrame();
        frame.setTitle("Test dialog synch");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            // On the next line I pass "frame" to the dialog so that the dialog never
            // goes behind the frame, avoiding the need for setAlwaysOnTop
        final JDialog dialog = new JDialog(frame, false);
        dialog.setSize(200, 50);
        frame.addComponentListener(new ComponentAdapter() {

            private Point lastLocation;

            @Override
            public void componentMoved(ComponentEvent e) {
                if (lastLocation == null && frame.isVisible()) {
                    lastLocation = frame.getLocation();
                } else {
                    Point newLocation = frame.getLocation();
                    int dx = newLocation.x - lastLocation.x;
                    int dy = newLocation.y - lastLocation.y;
                    dialog.setLocation(dialog.getX() + dx, dialog.getY() + dy);
                    lastLocation = newLocation;
                }
            }

        });
        frame.setSize(400, 200);
        frame.setVisible(true);
        dialog.setLocationRelativeTo(frame);
        dialog.setVisible(true);
    }

    public static void main(String[] args) {
        SwingUtilities.invokeLater(new Runnable() {

            @Override
            public void run() {
                new Test().initUI();
            }
        });
    }

}
于 2012-05-31T12:35:17.937 に答える
0

必要なオブジェクトを参照するコンポーネントリスナーを簡単に作成できます

    final Object one = new Object();
    final Object two = new Object();

    ComponentListener listener = new ComponentListener() {
        public void componentHidden(ComponentEvent e) {
            one.toString();
        }
        public void componentMoved(ComponentEvent e) {
            two.toString();
        }
        public void componentResized(ComponentEvent e) {
            one.toString();
        }
        public void componentShown(ComponentEvent e) {
            two.toString();
        }
    };
于 2012-05-31T12:33:54.293 に答える