本文介绍了我可以添加/减去绑定到元素属性的值吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
XAML 是否允许修改绑定值?
像 Width="{Binding Elementname="lstMine", Path=Width}" -100
吗?这样我就可以有一个相对价值.
Does XAML allows modification of bound value?
Like Width="{Binding Elementname="lstMine", Path=Width}" -100
? So that I can have a relative value.
推荐答案
您可以为此目的使用转换器,我的 WPF Converters 库包含一个 ExpressionConverter
,它允许您做到这一点:
You can use converters for this purpose, and my WPF Converters library includes an ExpressionConverter
that allows you to do exactly that:
Width="{Binding Width, ElementName=lstMine, Converter={con:ExpressionConverter {}{0}-100}}"
这篇关于我可以添加/减去绑定到元素属性的值吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!