Here's the problem again.
Microsoft Expression Blend 2 animation is not moving
Now the master teaches us how to animate silverlight.2.0.
Very simple
You made the animation.
But there's no trigger point.
Or don't tell me when to start
Microsoft Visual Web Developer 2008 Express Edition or VS2008
Then hit the Silverlight Tools patch
This should be convenient.
Of course, Notepad can also
Open Code section like mine is Page.xaml.cs.
Like the animated Ballmove I'm going to make me (the name of the Microsoft Expression blend Storyboard)
To run an animation at startup:
If you can't read the code,
Suggest finding a book like Wrox Red Book C # Introductory Classic
Copy Code code as follows:
using System;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
Namespace Feiruwenzi
{
Public partial class Page:usercontrol
{
Public Page ()
{
/ /Required to initialize variables
InitializeComponent ();
this. Loaded + = new Routedeventhandler (page_loaded);
//Delegate hook registration, which is valid, it is recommended to use VS or vwd time, with the tab action
}
void Page_loaded (object sender, RoutedEventArgs e)
{
Bal Lmove. Begin ();/Move
}
}
}