项目快弄完了,想美化一下,但我是用Ext做的,怎么美化呀?
大家提供些方法吧,我郁闷了......

解决方案 »

  1.   

    ext还要怎么美化?加个换皮肤的功能就可以了
      

  2.   

    你使用的EXT,自己不知道怎么加皮肤?
      

  3.   

    try so see:http://www.cnblogs.com/mogen_yin/archive/2008/10/22/1317031.html
      

  4.   

    {
    text:'界面风格',
    menu:[
    {
    text:'蓝色风暴(默认)',
    id: 'ext-all',
    handler:changeStyle
    },
    {
    text:'紫色浪漫',
    id: 'xtheme-purple',
    handler:changeStyle
    },
    {
    text:'黑色幽默',
    id: 'xtheme-black',
    handler:changeStyle
    },
    {
    text:'棕色咖啡',
    id: 'xtheme-gray',
    handler:changeStyle
    },
    {
    text:'春意浓浓',
    id: 'xtheme-olive',
    handler:changeStyle
    }
    ]
    }
    function changeStyle(item, e){
    Ext.util.CSS.swapStyleSheet('window', 'ext/resources/css/' + item.getId() + '.css');
    }希望对你有用
      

  5.   

    基本不用美化了吧,Ext本身就做了美工了。