how do you set a property of a control to an address of a function in xaml?
- by ambog36
Hi, I have a control that has a "Filter" property that expects a function that defines how the contents of the control should be filtered. so far i am setting the filter in code behind as such:
MyControl.Filter = AddressOf Filters.MyFilter
In this example MyFilter is a shared function in the Filters class with the following signature:
…