Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
JSpinner の矢印の幅を編集する簡単な方法はありますか?
あなたが使用することができますsetPreferredSize():
setPreferredSize()
Dimension d = spinner.getPreferredSize(); d.width = 50; spinner.setPreferredSize(d);
LayoutManagerに注意してください。これは、範囲外の場合にこの優先サイズを変更する可能性があります。