How do I call a call method from XAML in WPF?
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.