改变sencha触摸屏的背景颜色

时间:2012-05-25 05:37:50

标签: touch extjs

我正在尝试更改面板的背景颜色。

请参阅代码:

panel: {
            centered: true,
            width: 200,
            height: 150,
            style: 'background-color: red',
            fullscreen: false,
            hidden: true,
            zIndex: 10,

       }

样式:'background-color:red' 语句不符合我的要求。它只改变面板边框的颜色而不是完整的面板背景颜色。

请同样建议。

谢谢!

2 个答案:

答案 0 :(得分:4)

这在2.0.0中适用于我:

Ext.application({
    launch : function() {
        Ext.Viewport.add([{
            xtype: 'panel',
            style: 'background-color:#F00'
        }]);
    }
});

答案 1 :(得分:0)

此链接:http://www.sencha.com/forum/archive/index.php/t-108823.html

建议background-color是它自己的实体。我从来没有真正使用Sencha,但是我正在使用的一组考虑过使用它......例如。

panel: {
        centered: true,
        width: 200,
        height: 150,
        background-color: red,
        fullscreen: false,
        hidden: true,
        zIndex: 10,

   }

另外,我不知道这是不是你没用的旧版本。