📄 menuitem.js
字号:
MenuItem = function()
{
this.id = arguments[0];
this.title = arguments[1];
this.address = arguments[2];
this.handle = arguments[3];
this.follow = arguments[4];
if (arguments.length > 5)
{
this.target = arguments[5];
}
else
{
this.target = "workspace";
}
if (arguments.length > 6)
{
this.icon = arguments[6];
}
else
{
this.icon = "images/xw_list0.gif";
}
this.locked = false;
};
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -