我想让JOptionPane.showMessageDialog
消息出现
- 屏幕上的任何位置。
- 相对于 JFrame。(不在 JFrame 的中心)
例如,这将在作为参数提供的 JFrame 的中心显示消息thisFrame
JOptionPane.showMessageDialog(thisFrame, "Your message.");
这将在屏幕中央显示与任何 JFrame 无关的消息。
JOptionPane.showMessageDialog(null, "Your message.");
我想要的是在我想要的任何地方设置消息的位置
我想要的是设置消息相对于 JFrame 的位置(不在 JFrame 的中心)
如何?