标签: java
我想更改输入对话框的大小及其位置。这可能吗?
答案 0 :(得分:1)
答案与任何Swing GUI相同:
getPreferredSize()
setLocation(...)
setLocationRelativeTo(...)
pack()
setVisible(true)