gpt4 book ai didi

java - 创建 JSpinner 错误的子类

转载 作者:行者123 更新时间:2023-12-01 18:30:13 25 4
gpt4 key购买 nike

所以我想创建一个JSpinner的子类,这样我就可以隐藏所有的配置。问题是当我将此对象放在 JFrame 上时,出现 UI not found 错误。

我找不到我错过了什么..

public class Time extends JSpinner {

public Time() {
super();
SpinnerDateModel SpinnerModel = new SpinnerDateModel();
this.setModel(SpinnerModel);

JSpinner.DateEditor dateEditor = new JSpinner.DateEditor(this, "hh:mm a");
this.setEditor(dateEditor);
}
}

最佳答案

为我工作。尝试这样:

class Test {
public static void main(String[] f) {
JFrame myFrame = new JFrame();
myFrame.add(new Time());
myFrame.setVisible(true);
}
}

class Time extends JSpinner {

public Time() {
super();
SpinnerDateModel SpinnerModel = new SpinnerDateModel();
this.setModel(SpinnerModel);

JSpinner.DateEditor dateEditor = new JSpinner.DateEditor(this, "hh:mm a");
this.setEditor(dateEditor);
}
}

关于java - 创建 JSpinner 错误的子类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24535526/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com