I have a button and want to pass multiple command parameter one being Binding and one is a constant string (in this case a constant string TDS
)
I am trying to follow this link: Passing two command parameters using a WPF binding but this is for multibinding. In my case I am using 1 binding and one constant string. I tried the below but it is giving syntax error in VS.
<Button.CommandParameter>
<MultiBinding>
<Binding Path="."/>
<s:String>TDS</s:String>
</MultiBinding>
</Button.CommandParameter>
How do I fix this?