WPF Obtenha o nome do elemento clicado

FrameworkElement s = sender as FrameworkElement;
string name = s.Name;
Solstice