Flex 4 中的数据绑定帮助

发布于 2024-10-19 10:03:39 字数 446 浏览 4 评论 0原文

我设法使启用的东西正常工作。

<s:Button x="388" y="219" width="180" height="40"
          label="Generate Code" fontWeight="bold"
          enabled="{(mbUniqueID.text!='')}" />

但我在向启用的按钮添加两个依赖项时遇到问题。如何仅在 mbUniqueID.text mbWinContent.text 不为空时启用此按钮。我想通过数据绑定来做到这一点。我可以通过 AS3 毫无问题地做到这一点,但我想要这种方法。我已成功使 mbUniqueID.text 数据绑定工作。我只需要知道如何使其依赖于两个因素而不是仅依赖于一个因素。

I managed to make the enabled thing work.

<s:Button x="388" y="219" width="180" height="40"
          label="Generate Code" fontWeight="bold"
          enabled="{(mbUniqueID.text!='')}" />

But I'm having trouble adding two dependencies to the button being enabled. How do I make this button enabled only if mbUniqueID.text and mbWinContent.text is not empty. I want to do this via DataBinding. I can do it without any problems via AS3 but I wanted that approach. I have successfully made the mbUniqueID.text DataBinding work. I just need to know how to make it dependent on two factors instead of just one.

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

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

发布评论

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

评论(1

灼痛 2024-10-26 10:03:39

您可以使用这个:

   <s:Button x="388" y="219" width="180" height="40"
      label="Generate Code" fontWeight="bold"
      enabled="{mbUniqueID.text !='' ? mbWinContent.text != '' ? true : false : false  }"
     />

这不是最好的例子,但它会起作用。

它是如何工作的(三元运算符):

variable = condition ? value if true : value if false

You can use this:

   <s:Button x="388" y="219" width="180" height="40"
      label="Generate Code" fontWeight="bold"
      enabled="{mbUniqueID.text !='' ? mbWinContent.text != '' ? true : false : false  }"
     />

It is not the best example but it will work.

How it works (ternary operator):

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