旧 GUI 中的主题问题

trouble with Theme in the olderGUI

我从 CN1 开始,我正在研究 Todo App 示例。当我在 Netbeans 中 运行 de app 时,只出现一个空白表格,我更改了主题,添加了一个 jpg 图像并使用旧的 GUI Builder 在 res 文件中进行了其他更改并使用了函数 theme = UIManager.initNamedTheme("/theme","Theme 2");,但是当我尝试在 Netbeans 中模拟时,我的宿舍没有任何变化。 这是TodoApp java文件中的完整代码,我注释掉新的hi Form部分(我用的是“Hi World”裸机模板):

public class TodoApp {

    private Form current;
    private Resources theme;

    public void init(Object context) {
        // use two network threads instead of one
        updateNetworkThreadCount(2);

        //theme = UIManager.initFirstTheme("/theme");
        theme = UIManager.initNamedTheme("/theme","Theme 2");

        // Enable Toolbar on all Forms by default
        Toolbar.setGlobalToolbar(true);

        // Pro only feature
        Log.bindCrashProtection(true);

        addNetworkErrorListener(err -> {
            // prevent the event from propagating
            err.consume();
            if(err.getError() != null) {
                Log.e(err.getError());
            }
            Log.sendLogAsync();
            Dialog.show("Connection Error", "There was a networking error in the connection to " + err.getConnectionRequest().getUrl(), "OK", null);
        });        
    }
    
    public void start() {
        if(current != null){
            current.show();
            return;
        }
        //Form hi = new Form("Hi World", BoxLayout.y());
        //hi.add(new Label("Hi World"));
        //hi.show();
        new TodoForm();
       
    }

    public void stop() {
        current = getCurrentForm();
        if(current instanceof Dialog) {
            ((Dialog)current).dispose();
            current = getCurrentForm();
        }
    }
    
    public void destroy() {
    }

}

我找不到我做错了什么。谢谢!!!

P.D。对不起我的英语,我也在学习。

我们建议避免使用旧的 GUI 生成器。它不再受支持,也不是为现代移动应用程序设计的。为了使用它,您必须创建一种特殊类型的项目(旧的 GUI 项目),并且只有这种类型的项目才能使用它。

新的 GUI 生成器工作得更好,它具有更强大的布局系统,并且以与现代 GUI 生成器更一致的方式工作。参见 https://www.codenameone.com/blog/tutorial-gui-builder-autolayout-signin-form-responsive.html