Animating a canvas?
Yes its me again - the guy with no real knowledge of WPF.
I have a canvas on my page and wish to make is so that when I click on it, it changes height (via a smooth animation). I can make it change height isntantly, but thats it....... any ideas?
This is what I have so far
void ChangeMidSize(object sender,RoutedEventArgs e)
{
MidSize.Height = 433;
}
Yerp, I am hopeless. I have tried looking at tutorials, but everything I have found is storyboard based or is designed to do a lot more than I am looking for... Please help!
Thanks guys!

