I found a great example here of how to do this in xaml, but i’m wondering if someone could help me with this example in code. I loop through images and create the Image Control in code and I’d like to set up something similar to what I found in this link below, so I can have the image resize on mouse over.
Given a WPF Image control, how can I make it bigger through animation on MouseEnter?
I suggest you use Data-Templating instead of "looping through images", that way you can completely reuse that XAML.
There is a nice sample that showcases Image-DataTemplating:
This gets image urls from the WEB but you can just bind to an
ObservableCollection<string>which holds the image paths.