本文介绍了带有滚动条的JScrollPane到左边的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要在我的JScrollPane中的内容的 left 上放置一个滚动条。可以在没有单独的JScrollBar组件的情况下完成吗?也许只是通过设置一些对齐?
I need to place a scroll bar to the left of the contents in my JScrollPane. Can it be done without a separate JScrollBar component? Perhaps simply by setting some alignment?
推荐答案
使用反复试验我发现
JScrollPane.setComponentOrientation(ComponentOrientation.RIGHT_TO_LEFT);
像魅力一样工作。
这篇关于带有滚动条的JScrollPane到左边的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!