AWT 对话框调整大小
我正在实现一个 AWT 对话框。当我们单击设置按钮时,会弹出此对话框。最初对话框的大小为 750x300。当我单击对话框内的按钮时,大小应增加到 900x300。
如何动态调整此对话框
的大小?
PS:无摆动
I am implementing an AWT dialog. This dialog is popped when we click a settings button. Initially the dialog has a size of 750x300. When I click on a button inside the dialog then the size should increase to 900x300.
How can I dynamically resize this Dialog
?
PS: No swing
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您尝试过以下方法吗?
dialog.pack()
重新定位所有内部 UI 元素此致,
塔哈尔
Have you tried the following?
dialog.pack()
to re-position all internal UI elementsRegards,
Tahar
与您在
JDialog
(或Window
或Frame
或..)中所做的几乎相同。Window.setSize(Dimension)
Pretty much the same as you might do in a
JDialog
(orWindow
orFrame
or..).Window.setSize(Dimension)