JSpinner没有显示

时间:2014-05-12 22:08:13

标签: java swing bounds jspinner

我真的不明白我的JSpinner会发生什么。 我实现了它然后我尝试用我的JPanel设置setBounds,但我唯一得到的是:

JSpinner

中间的小方块应该是我的JSpinner ..

我的代码是这样的:

private JSpinner spinnerDayBirth;
spinnerDayBirth = new JSpinner();
spinnerDayBirth.setBounds(280,351, 25, 25);
add(spinnerDayBirth);

他们在这些说明中只有几行,但他们从不接触过这个JSpinner。

所以我想知道为什么我不能得到一个正常的JSpinner .. 提前谢谢!

1 个答案:

答案 0 :(得分:0)

我有同样的问题。我使用简单的spinnerModel然后我尝试了你的程序,它也工作。 有一件事要做 - 重新设置你的模型。如果要显示微调器,则必须再次设置新的微调器模型。

例如我输入了这段代码:

    public void method() {
       jPanel2.setLocation(0, 96);
       jPanel2.setSize(getWidth(), getHeight() - 96);
       jPanel2.getHeight() - jButton1.getHeight() - 50);
       jSpinner1.setModel(new SpinnerNumberModel(2,1,10,1));   //<- this is line you need to type
       jSpinner1.setSize(60, 25);
       jSpinner1.setLocation(0,0);
}