如何在 Qooxdoo 中基于 CanvasLayout 的自定义小部件设置边框/背景?
我是 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于 CanvasLayout 小部件的大小。设置它的大小(高度和宽度)将显示背景颜色。
由于它是 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.
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.