更改 JSlider 上旋钮的宽度

发布于 2024-09-02 09:17:39 字数 143 浏览 7 评论 0原文

好吧,我已经在谷歌上搜索了一段时间,看看是否能找到这个问题的答案,但没有找到答案。也许我只是在寻找错误的东西,但这就是我想知道的:

如何更改 JSlider 组件上实际旋钮的宽度?不是如何改变 JSlider 的宽度。

任何帮助将不胜感激!

Ok, so I have searched google for a while now to see if I can find the answer to this but no dice. Maybe I am just searching for the wrong thing but this is what I want to know:

How do you change the width of the actual Knob on the JSlider component? NOT how to change the width of the JSlider.

Any help would be greatly appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

却一份温柔 2024-09-09 09:17:39
   BasicSliderUI sliderUI = new javax.swing.plaf.basic.BasicSliderUI(jTimeSlider){
        protected Dimension getThumbSize() {
              return new Dimension(15, 20);
          }
      };
    jTimeSlider.setUI(sliderUI);

其中尺寸宽度是旋钮的宽度。

   BasicSliderUI sliderUI = new javax.swing.plaf.basic.BasicSliderUI(jTimeSlider){
        protected Dimension getThumbSize() {
              return new Dimension(15, 20);
          }
      };
    jTimeSlider.setUI(sliderUI);

where dimension width is the width of the knob.

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