📄 icons.js
字号:
isc.IButton.create({ ID: "findButton", width: 120, title: "Find Related", icon: "icons/16/find.png"});isc.Button.create({ ID: "saveButton", title: "Save", left: 150, icon: "icons/16/icon_add_files.png", iconOrientation: "right", showDownIcon: true});isc.Button.create({ title: "Disable Save", width: 120, left: 60, top: 45, click : function () { if (saveButton.isDisabled()) { saveButton.enable(); this.setTitle("Disable Save"); } else { saveButton.disable(); this.setTitle("Enable Save"); } }});
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -