3

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

请看代码:

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

       }

但是style: 'background-color: red'声明不符合我的要求。它只会改变面板边框的颜色,而不是完整的面板背景颜色。

请提出相同的建议。

谢谢!

4

2 回答 2

4

这在 2.0.0 中对我有用:

Ext.application({
    launch : function() {
        Ext.Viewport.add([{
            xtype: 'panel',
            style: 'background-color:#F00'
        }]);
    }
});
于 2012-05-25T15:42:21.330 回答
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,

   }

另外,我不知道这是否适用于您未使用的旧版本。

于 2012-05-25T05:54:59.127 回答