📄 mdi.java
字号:
package thinlet.drafts;
import thinlet.*;
/**
*
*/
public class MDI {
/**
*
*/
public void newDialog(Thinlet thinlet, Object desktop) {
try {
Object dialog = thinlet.parse("mdidialog.xml", this);
thinlet.add(desktop, dialog, 0);
} catch (Exception exc) {}
}
/**
*
*/
public void setModal(Thinlet thinlet, Object dialog, boolean modal) {
thinlet.setBoolean(dialog, "modal", modal);
}
/**
*
*/
public void closeDialog(Thinlet thinlet, Object dialog) {
thinlet.remove(dialog);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -