NavigationWindowAutomationPeer.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / Orcas / QFE / wpf / src / Framework / System / Windows / Automation / Peers / NavigationWindowAutomationPeer.cs / 1 / NavigationWindowAutomationPeer.cs

                            using System; 
using System.Windows;
using System.Windows.Automation;
using System.Windows.Navigation;
using System.Windows.Interop; 
using System.Windows.Media;
using System.ComponentModel; 
 
namespace System.Windows.Automation.Peers
{ 
    ///
    public class NavigationWindowAutomationPeer : WindowAutomationPeer
    {
        /// 
        public NavigationWindowAutomationPeer(NavigationWindow owner): base(owner)
        {} 
 
        ///
        override protected string GetClassNameCore() 
        {
            return "NavigationWindow";
        }
 
        //
        [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] 
        internal static void RaiseAsyncContentLoadedEvent(AutomationPeer peer, long bytesRead, long maxBytes) 
        {
            double percentComplete = 0d; 
            AsyncContentLoadedState asyncContentState = AsyncContentLoadedState.Beginning;

            if (bytesRead > 0)
            { 
                if (bytesRead < maxBytes)
                { 
                    percentComplete = maxBytes > 0 ? (bytesRead * 100d / maxBytes) : 0; 
                    asyncContentState = AsyncContentLoadedState.Progress;
                } 
                else
                {
                    percentComplete = 100d;
                    asyncContentState = AsyncContentLoadedState.Completed; 
                }
            } 
 
            peer.RaiseAsyncContentLoadedEvent(new AsyncContentLoadedEventArgs(asyncContentState, percentComplete));
        } 

    }

} 

 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System; 
using System.Windows;
using System.Windows.Automation;
using System.Windows.Navigation;
using System.Windows.Interop; 
using System.Windows.Media;
using System.ComponentModel; 
 
namespace System.Windows.Automation.Peers
{ 
    ///
    public class NavigationWindowAutomationPeer : WindowAutomationPeer
    {
        /// 
        public NavigationWindowAutomationPeer(NavigationWindow owner): base(owner)
        {} 
 
        ///
        override protected string GetClassNameCore() 
        {
            return "NavigationWindow";
        }
 
        //
        [System.Runtime.CompilerServices.MethodImpl(System.Runtime.CompilerServices.MethodImplOptions.NoInlining)] 
        internal static void RaiseAsyncContentLoadedEvent(AutomationPeer peer, long bytesRead, long maxBytes) 
        {
            double percentComplete = 0d; 
            AsyncContentLoadedState asyncContentState = AsyncContentLoadedState.Beginning;

            if (bytesRead > 0)
            { 
                if (bytesRead < maxBytes)
                { 
                    percentComplete = maxBytes > 0 ? (bytesRead * 100d / maxBytes) : 0; 
                    asyncContentState = AsyncContentLoadedState.Progress;
                } 
                else
                {
                    percentComplete = 100d;
                    asyncContentState = AsyncContentLoadedState.Completed; 
                }
            } 
 
            peer.RaiseAsyncContentLoadedEvent(new AsyncContentLoadedEventArgs(asyncContentState, percentComplete));
        } 

    }

} 

 

// 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