gpt4 book ai didi

delphi - 我们可以在Delphi XE2 LiveBinding表达式中使用 bool 运算符吗?

转载 作者:行者123 更新时间:2023-12-03 15:58:28 37 4
gpt4 key购买 nike

我计划为 TCheckBox 编写一个实时绑定(bind)源表达式:

SourceExpression = '(Checked = False) and (Enabled = True)'

执行代码时,提示异常:

Expected EOF - trailing text in expression

Delphi XE2 Live Binding支持 bool 运算符吗?

最佳答案

不,不直接支持 bool 运算符。

来自docu :

You can use the following math symbols in your expressions:

  • Constants: nil True False Pi
  • Arithmetic operators: + - * /
  • Logic operators: = <> < <= > >=
  • Parentheses, (), to change operator precedence.

但是你可以使用the builtin functions IfAll(), IfAny() and IfThen()而不是 andornot:

SourceExpression := 'IfAll(IfThen(Checked, False, True), Enabled)'

或者你register your own functions .

我测试了这 4 XE4,但它应该适用于 XE2 2。

  • A 或 B:IfAny(A, B)
  • A 和 B:IfAll(A, B)
  • 不是 A:IfThen(A, False, True)
  • A 异或 B:IfAll(IfAny(A, B), IfThen(IfAll(A,B), False, True))

关于delphi - 我们可以在Delphi XE2 LiveBinding表达式中使用 bool 运算符吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11792623/

37 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com