(func: Function)
| 61 | |
| 62 | //有一些函数需要在窗口创建之后才执行 |
| 63 | registerPostStart(func: Function) { |
| 64 | if (this.started) { |
| 65 | func(); |
| 66 | } else { |
| 67 | this.postStartCallbacks.push(func); |
| 68 | } |
| 69 | } |
| 70 | |
| 71 | constructor(controller: MainController) { |
| 72 | this.controller = controller; |
no test coverage detected