Flex Button 在 itemRenderer 类中缺少其外观

发布于 2024-11-10 16:04:25 字数 587 浏览 4 评论 0原文

我尝试在 itemRenderer 元素实例内创建 Button 类的实例,但按钮实例显示时没有其外观。 有人可以解释一下:

  • 为什么会发生这种情况?
  • 如何修复它?
  • 我这样做对还是不对?
override protected function createChildren():void
{
    super.createChildren();

    btnControl           = new Button();
    btnControl.x         = 2;
    btnControl.y         = 22;
    btnControl.minHeight = 18;
    btnControl.minWidth  = 50;
    btnControl.height    = 18;
    btnControl.width     = Number( undefined );
    btnControl.label     = "контрол";
    btnControl.addEventListener( MouseEvent.CLICK, onBtnControlClick );
}

I have tried to create an instance of Button class inside an itemRenderer element instance, but the button instance appears without its skin.
can someone explain me :

  • Why does it happends ?
  • How to fix it ?
  • Am I doint it right or not ?
override protected function createChildren():void
{
    super.createChildren();

    btnControl           = new Button();
    btnControl.x         = 2;
    btnControl.y         = 22;
    btnControl.minHeight = 18;
    btnControl.minWidth  = 50;
    btnControl.height    = 18;
    btnControl.width     = Number( undefined );
    btnControl.label     = "контрол";
    btnControl.addEventListener( MouseEvent.CLICK, onBtnControlClick );
}

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

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

发布评论

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

评论(1

弄潮 2024-11-17 16:04:25

据我从您的代码中可以看出,您没有将按钮添加到显示列表中。 添加

addElement(btnControl);

如果这是您要扩展的 Spark 组件,请在末尾 ;如果它是 mx 组件使用

addChild(btnControl);

As far as I can tell from your code you're not adding the button to the displayList. Add

addElement(btnControl);

at the end if this is a Spark component you're extending; if it's an mx component use

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