Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的目标是具有menuitem以下形式:
menuitem
------------------------- window1 [ _ ] [ □ ] [ x ] -------------------------
因此问题是:工具(类似于我们通常在窗口右上角的工具)或标准按钮是否可以放置在菜单项中?
使用分机 4.2:
Ext.require('*'); Ext.onReady(function() { new Ext.menu.Menu({ items: { border: false, xtype: 'panel', title: 'Foo', shrinkWrapDock: true, tools: [{ type: 'close' }] } }).show(); });