Hello I have a Binding that I am using along with a converter, I want the parameter that is transferred to the converter should be an empty string. Is there a way I can pass it via an inline binding?
|
|
|
|
|
|
|
You can actually use single quotes inline to pass an empty string, like so:
|
||
|
|
|
|
If you want to do it inline, you can use the static String.Empty property. You need to add a namespace definition for clr-namespace:System to use it. In your Window definition (or whichever control you're using):
Then you can use something like this:
|
||||
|
|
|
Instead of defining the binding in a single line:
You can define it multi-line and specify attributes individually:
Pretty sure that'll do what you're looking for. |
||
|
|
