How do I center a JDialog on screen?

前端 未结 5 1672
野趣味
野趣味 2020-12-07 19:38

How do I go about positioning a JDialog at the center of the screen?

5条回答
  •  情深已故
    2020-12-07 20:21

    Use this line after the pack() method:

    setLocation((Toolkit.getDefaultToolkit().getScreenSize().width)/2 - getWidth()/2, (Toolkit.getDefaultToolkit().getScreenSize().height)/2 - getHeight()/2);
    

提交回复
热议问题