xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="" Height="300" Width="300" Background="Black">
//File:Window.xaml.vb
Imports System
Imports System.Windows
Namespace WpfApplication1
Public Partial Class Window1
Inherits Window
Public Sub New()
InitializeComponent()
End Sub
Private Sub Storyboard_Completed(sender As Object, e As EventArgs)
MessageBox.Show("Storyboard complete.", "WpfApplication1")
End Sub
Private Sub ParallelTimeline_Completed(sender As Object, e As EventArgs)
MessageBox.Show("ParallelTimeline complete.", "WpfApplication1")
End Sub
Private Sub Animation1_Completed(sender As Object, e As EventArgs)
MessageBox.Show("Animation 1 complete.", "WpfApplication1")
End Sub
Private Sub Animation2_Completed(sender As Object, e As EventArgs)
MessageBox.Show("Animation 2 complete.", "WpfApplication1")
End Sub
Private Sub Animation3_Completed(sender As Object, e As EventArgs)
MessageBox.Show("Animation 3 complete.", "WpfApplication1")
End Sub
End Class
End Namespace