⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mdi.java

📁 利用設定來製作簡易地 applet, 可以很快速的寫出 applet 來.
💻 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 + -