左角浮动 JButton
我有一个巨大的 JPanel
所以它是可滚动的。在此 JPanel
中,我在右上角有 JButton
。当我想推动它时,我总是需要滚动到这里。是否可以在我的应用程序的右上角放置浮动的 JButton
?
如果是的话请帮助我
I have a huge JPanel
so it is scrollable. In this JPanel
I have JButton
at the right corner. When I want to push it I always need to scroll here. Is it possible to have floating JButton
at the right corner of my application ?
if yes please help me
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建
JWindow
并放置JButton
,这个容器你可以粘在JViewPort
的右上角create
JWindow
and put thereJButton
, this container you can stick to the right corner ofJViewPort
该方法 < code>setDefaultButton() 可能允许您使用该按钮,而无需滚动或隐藏浮动组件下的数据。
The method
setDefaultButton()
may allow you to use the button without scrolling or hiding data under a floating component.