- var menu = new Ext.menu.Menu();
- menu.add
- (
- {
- text:"字号",
- menu:
- [
- new Ext.menu.CheckItem({text:"大",group:"font"}),
- new Ext.menu.CheckItem({text:"中",group:"font"}),
- new Ext.menu.CheckItem({text:"小",group:"font"})
- ]
- },
- {
- text:"字体",
- menu:
- [
- new Ext.menu.CheckItem({text:"加粗"}),
- new Ext.menu.CheckItem({text:"斜体"})
- ]
- }
- }
- var btn1 = new Ext.Button
- ({
- text:"文件",cls: 'x-btn-text-icon',icon:"../Images/Menus/house.png",
- menu:
- [
- {text:"打开",icon:"../Images/Menus/house.png"},
- {text:"保存",icon:"../Images/Menus/house.png"},
- {text:"删除"},
- {text:"关闭"},
- {text:"退出"}
- ]
- });
- var btn2 = new Ext.Button
- ({
- text:"编辑",cls: 'x-btn-text-icon',icon:"../Images/Menus/house.png",
- menu:
- [
- {text:"复制",icon:"../Images/Menus/house.png"},
- {text:"拷贝",icon:"../Images/Menus/house.png"},
- '-',
- {text:"查找"},
- {text:"替换"}
- ]
- });
- var toolbar = new Ext.Toolbar
- ({
- width:300,height:200,items:[btn1,btn2],renderTo:"BuildMenu5"
- });
免责声明: 本文仅代表作者个人观点,与爱易网无关。其原创性以及文中陈述文字和内容未经本站证实,对本文以及其中全部或者部分内容、文字的真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
|