PageRenderTime 200ms CodeModel.GetById 38ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/VBSL3Animation/UsingKeyFrames.xaml.vb

#
Visual Basic | 28 lines | 9 code | 5 blank | 14 comment | 0 complexity | 84033bdbdc5ea8094c72f4b5abc7c219 MD5 | raw file
  1. '***************************** Module Header ******************************\
  2. '* Module Name: UsingKeyFrames.xaml.vb
  3. '* Project: VBSL3Animation
  4. '* Copyright (c) Microsoft Corporation.
  5. '*
  6. '* This module shows how to create KeyFrames based animation in Silverilght
  7. '*
  8. '* This source is subject to the Microsoft Public License.
  9. '* See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
  10. '* All other rights reserved.
  11. '*
  12. '* History:
  13. '* * 9/10/2009 03:00 PM Allen Chen Created
  14. '\**************************************************************************
  15. Partial Public Class UsingKeyFrames
  16. Inherits UserControl
  17. Public Sub New()
  18. InitializeComponent()
  19. End Sub
  20. Private Sub Button_Click(ByVal sender As Object, ByVal e As RoutedEventArgs)
  21. Me.MyAnimationStoryboard.Begin()
  22. End Sub
  23. End Class