submodule1.js

来自「axjx工具代码给大家交流」· JavaScript 代码 · 共 56 行

JS
56
字号
Class('App.SubModule1', 'linb.Com',{    Instance:{        base:["linb.UI"],         iniComponents:function(){            // [[code created by jsLinb UI Builder            var host=this, children=[], append=function(child){children.push(child.get(0))};                        append((new linb.UI.Pane)                .host(host,"panelMain")                .setLeft(60)                .setTop(50)                .setWidth(160)                .setHeight(70)            );                        host.panelMain.append((new linb.UI.Div)                .host(host,"div37")                .setLeft(10)                .setTop(10)                .setHeight(20)                .setHtml("UI in SubModule1")            );                        host.panelMain.append((new linb.UI.Button)                .host(host,"button22")                .setLeft(10)                .setTop(40)                .setWidth(140)                .setCaption("button in SubModule1")                .onClick("_button22_onclick")            );                        return children;            // ]]code created by jsLinb UI Builder        },         required:["linb.UI.Pane", "linb.UI.Div", "linb.UI.Tag", "linb.UI.Button"],         _button22_onclick:function (profile, e, value) {            alert("I'm in SubModule1");        },         _beforecreated:function (com, threadid) {            linb.log('thread id: '+threadid, 'SubModule1.js is loaded');            linb.Thread(threadid).insert(1000);        },         events:{"onCreated":"_beforecreated", "onReady":"_onready"},         iniExComs:function(com, threadid){            //use newCom            linb.ComFactory.newCom('App.Module3' ,function(){                this.show(null,null,null,threadid);            },threadid);        },        _onready:function (com, threadid) {            linb.log('thread id: '+threadid, 'SubModule1.js is ready');            linb.Thread(threadid).insert(1000);        }    }});

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?