You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library allows to write `IValueConverter` and `IMultiValueConverter` objects with the most convenient syntax available, ideally, using the lambda expressions.
4
4
@@ -13,7 +13,8 @@ internal static class Converters
@@ -31,7 +32,7 @@ You're done! Just reference the converters with the `x:Static` expressions from
31
32
- separate class for each converter not needed anymore
32
33
- no redundant declarations: if you do not need the `ConvertBack` method, don't define it; otherwise, just put the second lambda expression
33
34
- full support for the remaining parameters of the `Convert` and `ConvertBack` methods: the `culture` and the `parameter` (also strongly-typed) are accessible as well
34
-
- if the conversion fails due to unexpected value types the optional [error strategy](LambdaConverters.Wpf/ConverterErrorStrategy.cs) can be specified
35
+
- if the conversion fails due to unexpected value types the optional [error strategy](Sources/LambdaConverters.Wpf/ConverterErrorStrategy.cs) can be specified
35
36
36
37
:bulb:*ReSharper users*: use the Extension Manager to install the external annotations for the library.
0 commit comments