AWT 对话框调整大小

发布于 2024-12-12 09:18:47 字数 140 浏览 0 评论 0原文

我正在实现一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

冷月断魂刀 2024-12-19 09:18:47

您尝试过以下方法吗?

  1. 将对话框大小更改为您想要的新大小
  2. 调用 dialog.pack() 重新定位所有内部 UI 元素

此致,
塔哈尔

Have you tried the following?

  1. Change your dialog box size to the new one you want
  2. Call dialog.pack() to re-position all internal UI elements

Regards,
Tahar

沐歌 2024-12-19 09:18:47

如何动态调整此对话框的大小?

与您在JDialog(或WindowFrame或..)中所做的几乎相同。

Window.setSize(Dimension)

How can I dynamically resize this Dialog?

Pretty much the same as you might do in a JDialog (or Window or Frame or..).

Window.setSize(Dimension)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文