改变弹出窗口的高度
我有一个带有几个菜单项的 Java swing 弹出菜单。
有什么方法可以增加弹出窗口的大小并保持相同数量的菜单项吗?例如,在第一个菜单项之前添加 10px,在最后一个菜单项之后添加 10px。
我该怎么做?有人可以给我提示吗?
谢谢
I have a Java swing popupmenu with a couple of menuItems.
Is there any way to increase the size of the popup keeping the same number of menuItems? For example, add 10px before the 1st menuItem and 10px after the last menuItem.
How can I do this? Can someone give me an hint?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这很简单。由于
JPopupMenu
是一个Container
,以下代码将产生您想要的效果This is pretty simple. Since
JPopupMenu
is aContainer
the following code will produce the effect you desire