但是它会报以下error: The property 'ActualWidth-20' was not found in type 'GroupBox'.
时间: 2023-12-21 17:07:31 浏览: 79
报如下错误
实际上,你可以在绑定表达式中使用括号来明确运算的优先级。例如,如果你想要先将 `ActualWidth` 属性值减去10,然后再将结果乘以0.8作为元素的 `Width` 属性值,可以这样写:
```
Width="{Binding ElementName=textBox2, Path=(ActualWidth-10)*0.8}"
```
这里使用括号将减法运算优先执行,然后再将结果乘以0.8,最终的结果作为 `Width` 属性的值。这样写应该就不会出现上述的错误了。
阅读全文