嗨,任何人都可以帮助我 如何根据桌面上的触摸屏要求增加jspinner箭头的大小
答案 0 :(得分:1)
帮助我了解如何根据桌面上的触摸屏要求增加jspinner箭头的大小
甚至可以改变
a)PreferredSize
Buttons
(API
受Icons size 8x8
限制,也必须覆盖)
b)在Buttons
和第二个或LEFT (or SOUTH)
RIGHT (or NORTH)
但对于JSpinner
我不会这样做
使用JTextField
创建JFormattedTextField
/ DocumentListener
,对DocumentFilter
(by default for JSpinner is there the same requirements too)的所有限制实施
将两个JButtons
(使用JButton#setXxxIcon
设置自己的Icon
),inc / des creasing
值
Date
/ Calendar
使用正确的JCalendar
或JDatePicker
答案 1 :(得分:1)
您可以尝试以下方法之一:
查看大 size variant是否可用于您选择的Look&感觉。
使用Spinner.arrowButtonSize
方法更改UIManager.put()
属性。
答案 2 :(得分:1)
更改微调器组件中JButton的大小,如下所示:
spn = new JSpinner();
spn.getComponent(0).setPreferredSize(new Dimension(40,40));
JSpinner有三个组成部分。两个JButton和一个JTextField。