Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have an usercontrol in a grid that i want to reposition 400 pixels with an animation. I can use the following code to reposition it without animation.

ucChat.Margin = new Thickness(0, -400, 0, 0);

i try to use the following code to animate it but i get an exception

DoubleAnimation da = new DoubleAnimation();
da.Duration = new Duration(TimeSpan.FromMilliseconds(1500));
da.From = 0;
da.To = -400;

Storyboard st = new Storyboard();
Storyboard.SetTarget(da, ucChat);
Storyboard.SetTargetProperty(da, "ucChat.Margin.Top");
st.Children.Add(da);

st.Begin();

An exception of type 'System.Exception' occurred in Regenwormen.exe but was not handled in user code WinRT information: Cannot resolve TargetProperty ucChat.Margin.Top on specified object.

Does anyone have an idea how i can solve this or what animation i need to use ? (thicknessanimation doesn't excists in windows store apps)

share|improve this question
did you try to write the storyboard in XAML? There you get Intellisense support for problems like this. You can Access Storyboards in the Resources via the Resources Collection or the FindRessource Method. – Sven Hecht Nov 8 '12 at 14:33

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.