private void HeroMouseEnter(object sender, MouseEventArgs e) { ((Image)sender).Source = GetGlowingImage(((Image)sender).Name); } pub
You probably want to return a BitmapSource. This MSDN article has an example of how to create a BitmapSource from an image file.
BitmapSource