I have a JSpinner:
I want the up/down buttons to be on the left side, and also the text to align on the left.
Is there a simple way I can achieve this? Thank you
JSpinner spinner = new JSpinner();
I have a JSpinner:
I want the up/down buttons to be on the left side, and also the text to align on the left.
Is there a simple way I can achieve this? Thank you
JSpinner spinner = new JSpinner();
Copyright © 2021 Jogjafile Inc.
You can override the methods found in BasicSpinnerUI for creating the next and previous buttons:
Custom Spinner UI:
Demo: