Hi,
How to call a call method from xaml in wpf?
Thanks in advance
Hi,
How to call a call method from xaml in wpf?
Thanks in advance
The typical way this is handled is by wrapping your method into an ICommand, and using the Commanding infrastructure in WPF.
I blogged about Commanding, showing some of the advantages of this approach, especially when you use something like the RelayCommand implementation in Josh Smith's MVVM article.