Loading

ExtJS-UI组件-Window

ExtJS教程汇总:https://www.cnblogs.com/cqpanda/p/16328016.html
转载请注明出处:https://www.cnblogs.com/cqpanda/p/17030699.html

更新记录
2023年1月5日 从笔记迁移到博客。

实例:是否显示最大化按钮

let win = Ext.create("Ext.window.Window",{
    title: 'Panda666 window',
    width: 300,
    height: 200,
    //是否显示最大化按钮
    maximizable: true,
    html: 'this is Panda666 window'
});

win.show();
posted @ 2023-01-06 15:51  重庆熊猫  阅读(121)  评论(0编辑  收藏  举报