如何在 Qooxdoo 中基于 CanvasLayout 的自定义小部件设置边框/背景?

发布于 2024-08-20 22:47:05 字数 512 浏览 6 评论 0原文

我是 Qooxdoo 的新手(我使用的是 0.7.4 版本,因为我使用的是 Eclipse RAP),我尝试创建一个基于 CanvasLayout 类的自定义小部件,该类组合了另一个小部件。这里有一点和平的代码:

qx.Class.define( "my.CanvasWidget", {
  extend: qx.ui.layout.CanvasLayout,
   construct: function( id ) {
     this.base( arguments );
     ...
   }

    }
  } );


//If using:

var myCanvasWidget = new my.CanvasWidget("myId");
...
myCanvasWidget.setBackgroundColor("#ff0000");

我的问题是:setBackgroundColor对myCanvasWidget没有任何作用,为什么会这样(属性backgroundColor存在于超类“Widget”中)?

I'm new to Qooxdoo (i'm using version 0.7.4, because I'm using Eclipse RAP) and I'm try to create a Custom Widget based on CanvasLayout class, that composites another Widgets. Here little peace of code:

qx.Class.define( "my.CanvasWidget", {
  extend: qx.ui.layout.CanvasLayout,
   construct: function( id ) {
     this.base( arguments );
     ...
   }

    }
  } );


//If using:

var myCanvasWidget = new my.CanvasWidget("myId");
...
myCanvasWidget.setBackgroundColor("#ff0000");

My question is: the setBackgroundColor has no effort on myCanvasWidget, why is it so (The property backgroundColor exist in super Class "Widget")?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

沒落の蓅哖 2024-08-27 22:47:05

这取决于 CanvasLayout 小部件的大小。设置它的大小(高度和宽度)将显示背景颜色。

 // in the constructor of your widget
 this.setWidth(100);  // 100 for example
 this.setHeight(100);

由于它是 0.7.x,据我所知,大小信息不会自动计算,因此您必须自己处理。

It depends on the size of your CanvasLayout widget. Setting the size (height and width) of it will show you the background color.

 // in the constructor of your widget
 this.setWidth(100);  // 100 for example
 this.setHeight(100);

As it is 0.7.x, the size information, as far as I know, will not be calculated automatically so you have to take care of that yourself.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文