Extjs4 图像button

来源:互联网 发布:天津南大通用 知乎 编辑:程序博客网 时间:2024/06/05 21:11

 给button一个大小,然后设置其背景图片样式

{      xtype : "button",      width : 50,      height : 45,      iconCls : 'guestManage',      ref : 'guestManage'  }

 然后定义对应的css样式

.guestManage{      background-image: url('../images/guest50_45.png') !important;      height: 45px !important;      width: 50px !important;  }