Tagged Questions

0
votes
3answers
68 views

Declare converters in the application.xaml or in individual files?

What should be the best practice to declare the converters: Declare ALL my converters in the app.xaml (i.e. in <Application.Resources/>) so it's available in the entire application. Declare on …
0
votes
3answers
40 views

How to pass an empty string as a ConverterPararmeter?

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?
1
vote
1answer
47 views

WPF Converter problem

So I have an object that implements INotifyPropertyChanged, and I have a property that when it changes, it call the PropertyChanged event all right, but when I use a converter like this: …
1
vote
4answers
375 views

How can WPF Converters be used in an MVVM pattern?

Let's say I have a View that is bound to ViewModel A which has an observable collection Customers. An advantage of this MVVM pattern is that I can also bind the View to ViewModel B which fills it …