EXTJS 4.2資料コントロールのWindowフォーム関連属性の使い方

3145 ワード

最大化、最小化、閉じるボタンを表示するかどうか
var win_CommonPicLibMultiple = Ext.create("Ext.window.Window", {

    title: " ",       // 

    draggable: false,

    border: false,

    icon: '/Resources/Images/16x16/blue16_005.gif',

    height: 800,                          // 

    width: 1200,                          // 

    layout: "fit",                        // 

    modal: true, // , false

    resizable: false,

    closeAction: 'hide',

    enableTabScroll: true,

    layout: 'border',

    border: false,

    plain: true,

    closable: true,   // 

    maximizable: true,// 

    minimizable: true,// 

    draggable: true,  // 

    listeners: {

        minimize: function (win_CommonPicLibMultiple, opts) {

            win_CommonPicLibMultiple.collapse();

        }

    },

    items: [west, center, east],// [ , ( ), ( ), 

    buttons: [{

        text: ' ', icon: '/Resources/Images/16x16/blue16_054.gif', handler: function () {

           



        }

    }, {

        text: ' ', icon: '/Resources/Images/16x16/blue16_032.gif',

        handler: function () {

            win_CommonPicLibMultiple.hide();

        }

    }

    ]

});