I have a MultiBinding
, with 1 of the bindings, I want to use a static value eg. 1 or 0.33 how can I do that? also when I am at it, I want to bind to the value 1/3 = 0.33333... can I have an expression?
<!-- not correct syntax, but something like this is what I want to acheive -->
<Binding Value="1" />
UPDATE
I tried something like
<Binding Path="NonExistantValue" FallbackValue="0" />
But it fails ... in a "clean" app it works tho ...