Basically, I am currently doing a project last year at my college in which I touch on the surface of WPF 2.0.
My project is a game in which if the user answers the question incorrectly, the next question will be rotated to make it more difficult. But I'm not sure how to do this. I saw an example in msdn microsoft, but it only shows XAML codes. I need C # codes.
Here is an example of XAML.
http://msdn.microsoft.com/en-us/library/ms754028.aspx
Last example
Here is part of my verification codes. I need to activate the animation if the user responds incorrectly.
if (surfaceRadioButton1.IsChecked == true) { user_answer = (string)surfaceRadioButton1.Content; textBlock2.Text = validateAnswer(user_answer, answer); retreiveYellowQns(); if (textBlock2.Text.Equals("Correct")) { yellow_coord = yellow_coord + 50; Canvas.SetLeft(car, yellow_coord); Canvas.SetTop(car, 289); } else { if (yellow_coord <= 330) { yellow_coord = 330; Canvas.SetLeft(car, yellow_coord); Canvas.SetTop(car, 289); } else { yellow_coord = yellow_coord - 50; Canvas.SetLeft(car, yellow_coord); Canvas.SetTop(car, 289); } } }
Any help would be appreciated, thanks in advance.
animation wpf textblock pixelsense
Joon kiat
source share