Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do you apply a ValueConverter to a convention-based Caliburn.Micro binding?

How do you apply a ValueConverter to a convention-based Caliburn.Micro binding? or do you need to use the {Binding} syntax?

I know I could do this

<TextBlock
    Text="{Binding Foo, Converter=fooToBarConverter}" />

but how do I apply that custom converter if I am using Caliburn.Micro's convention over configuration, like

<TextBlock
    x:Name="Foo" />

Thanks,

like image 957
kiwipom Avatar asked Jul 05 '11 11:07

kiwipom


1 Answers

You need to replace the ConventionManager.ApplyValueConverter func. By default it only does athe bool => Visibility conversion. Also, you can replace the ApplyStringFormat func for conventional string formatting. Have a look in the ConventionManager to see how it works.

like image 161
EisenbergEffect Avatar answered Oct 06 '22 05:10

EisenbergEffect