I'm interested in creating a new FilterEventHandler and associating it to a CollectionViewSource. All works fine, unless I want this handler to receive a parameter (let's say "price") in order to help with the filtering process.
However, when I try to put this extra-parameter, I'm getting a message which tells me that no overload matches the FilterEventHandler delegate signature (that's true, btw :p).
How can I achieve what I want? Is it possible? Or ... should I need to use a global variable instead a parameter in order to store that value and use it from the filtering method?