I have MultiBinding, with 1 binding, I want to use a static value, for example. 1 or 0.33, how can I do this? also when I am, I want to bind the value 1/3 = 0.33333 ... Can I get the expression?
<Binding Value="1" />
UPDATE
I tried something like
<Binding Path="NonExistantValue" FallbackValue="0" />
But it fails ... in a "clean" application it works ...
source
share