ResumeStoryboard.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / Orcas / NetFXw7 / wpf / src / Framework / System / Windows / Media / Animation / ResumeStoryboard.cs / 1 / ResumeStoryboard.cs

                            /****************************************************************************\ 
*
* File: ResumeStoryboard.cs
*
* This object includes a Storyboard reference.  When triggered, the Storyboard 
*  resumes.
* 
* Copyright (C) by Microsoft Corporation.  All rights reserved. 
*
\***************************************************************************/ 
using System.Diagnostics;               // Debug.Assert

namespace System.Windows.Media.Animation
{ 
/// 
/// ResumeStoryboard will call resume on its Storyboard reference when 
///  it is triggered. 
/// 
public sealed class ResumeStoryboard : ControllableStoryboardAction 
{
    /// 
    ///     Called when it's time to execute this storyboard action
    ///  
    internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
    { 
        Debug.Assert( containingFE != null || containingFCE != null, 
            "Caller of internal function failed to verify that we have a FE or FCE - we have neither." );
 
        if( containingFE != null )
        {
            storyboard.Resume(containingFE);
        } 
        else
        { 
            storyboard.Resume(containingFCE); 
        }
    } 
}
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
/****************************************************************************\ 
*
* File: ResumeStoryboard.cs
*
* This object includes a Storyboard reference.  When triggered, the Storyboard 
*  resumes.
* 
* Copyright (C) by Microsoft Corporation.  All rights reserved. 
*
\***************************************************************************/ 
using System.Diagnostics;               // Debug.Assert

namespace System.Windows.Media.Animation
{ 
/// 
/// ResumeStoryboard will call resume on its Storyboard reference when 
///  it is triggered. 
/// 
public sealed class ResumeStoryboard : ControllableStoryboardAction 
{
    /// 
    ///     Called when it's time to execute this storyboard action
    ///  
    internal override void Invoke( FrameworkElement containingFE, FrameworkContentElement containingFCE, Storyboard storyboard )
    { 
        Debug.Assert( containingFE != null || containingFCE != null, 
            "Caller of internal function failed to verify that we have a FE or FCE - we have neither." );
 
        if( containingFE != null )
        {
            storyboard.Resume(containingFE);
        } 
        else
        { 
            storyboard.Resume(containingFCE); 
        }
    } 
}
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK