本文介绍了如何将JSpinner设置为不可编辑?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在使用 JSpinner
创建时间选择器。 JSpinner
中的文本是可编辑的。但我想将 JSpinner
设置为不可编辑,因为有可能提供无效值。任何人都可以帮助我吗?
I am creating time picker using a JSpinner
. The text inside the JSpinner
is editable. But I want to set the JSpinner
as non editable, because there is the chance to give an invalid value. Can anyone help me?
推荐答案
请尝试以下方法:
JSpinner spinner = ...;
((DefaultEditor) spinner.getEditor()).getTextField().setEditable(false);
只要你没有通过调用<$ c $自己更改微调器编辑器就可以工作c> spinner.setEditor(...)。
告诉我们这是否有帮助。
Tell us if this helps.
这篇关于如何将JSpinner设置为不可编辑?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!