ExtJS-UI组件-Segmented Button
更新记录
详细更新记录
``` 2023年1月6日 从笔记迁移到博客。 ```转载请注明出处:https://www.cnblogs.com/cqpanda/p/17031386.html
ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html
实例:简单使用
Ext.create('Ext.button.Segmented',{
renderTo: Ext.getBody(),
vertical:false,
items:[
{
xtype: 'button',
text:'1st button',
iconCls:'addicon-16'
},
{
text:'2nd button',
iconCls:'addicon-16'
},
{
text:'3th button',
iconCls:'addicon-16'
},
{
text:'4th button',
iconCls:'addicon-16'
}
]
});
本文来自博客园,作者:重庆熊猫,转载请注明原文链接:https://www.cnblogs.com/cqpanda/p/17031386.html