1

我正在尝试使用 BorderContainer 并在内部使用它们的区域样式调用几个 ContentPanes。但是,我遇到了如下代码的问题:

function getWindowContent(graphic) {
        var bc = new dijit.layout.BorderContainer({
            style: "width:600px;height:600px;background-color:lightblue;"
        }, dojo.create("div"));

    //display attribute information1
    var german = new dijit.layout.ContentPane({
      region: "leading",
      content: "<p>Hallo Welt!</p><p>info</p><p>info</p><p>info</p>"
    }, dojo.create("div"));

    //display attribute information2
    var french = new dijit.layout.ContentPane({
      region: "center",
      content: "<p>Bonjour tout le monde!</p><p>info</p><p>info</p><p>info</p>"
    }, dojo.create("div"));

    //display attribute information3
    var english = new dijit.layout.ContentPane({
      region: "trailing",
      content: "<p>Hello World!</p><p>info</p><p>info</p><p>info</p>"
    }, dojo.create("div"));

    bc.startup();

    bc.addChild(german);
    bc.addChild(french);
    bc.addChild(english);

    return bc.domNode;
  }

唯一正确出现的孩子是“英国”孩子,而“德国”孩子根本没有出现,“法国”孩子被严重压缩。有人对我如何解决这个问题有想法吗?

4

0 回答 0