WindowClosedEventArgs.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 / UIAutomation / UIAutomationTypes / System / Windows / Automation / WindowClosedEventArgs.cs / 1 / WindowClosedEventArgs.cs

                            //---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// 
// Description: WindowClosedEventArgs event args class 
//
// History: 
//  12/11/2003 : Micw Added
//
//---------------------------------------------------------------------------
 
using System;
using System.Windows.Automation; 
using MS.Internal.Automation; 

namespace System.Windows.Automation 
{
    /// 
    /// WindowClosedEventArgs event args class
    ///  
#if (INTERNAL_COMPILE)
    internal sealed class WindowClosedEventArgs  : AutomationEventArgs 
#else 
    public sealed class WindowClosedEventArgs  : AutomationEventArgs
#endif 
    {
        //-----------------------------------------------------
        //
        //  Constructors 
        //
        //----------------------------------------------------- 
 
        #region Constructors
 
        /// 
        /// Constructor for top-level window event args.
        /// 
        public WindowClosedEventArgs (int [] runtimeId) 
            : base(WindowPatternIdentifiers.WindowClosedEvent)
        { 
            if (runtimeId == null) 
            {
                throw new ArgumentNullException("runtimeId"); 
            }
            _runtimeId = (int[])runtimeId.Clone();
        }
 
        #endregion Constructors
 
 
        //------------------------------------------------------
        // 
        //  Public Properties
        //
        //-----------------------------------------------------
 
        #region Public Properties
 
        ///  
        /// Returns the Windows UI Automation runtime identifier
        ///  
        public int [] GetRuntimeId()
        {
            return (int [])_runtimeId.Clone();
        } 

        #endregion Public Properties 
 

        //------------------------------------------------------ 
        //
        //  Private Fields
        //
        //------------------------------------------------------ 

        #region Private Fields 
 
        private int [] _runtimeId;
 
        #endregion Private Fields
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
//---------------------------------------------------------------------------- 
//
// 
//    Copyright (C) Microsoft Corporation.  All rights reserved.
//  
//
// 
// Description: WindowClosedEventArgs event args class 
//
// History: 
//  12/11/2003 : Micw Added
//
//---------------------------------------------------------------------------
 
using System;
using System.Windows.Automation; 
using MS.Internal.Automation; 

namespace System.Windows.Automation 
{
    /// 
    /// WindowClosedEventArgs event args class
    ///  
#if (INTERNAL_COMPILE)
    internal sealed class WindowClosedEventArgs  : AutomationEventArgs 
#else 
    public sealed class WindowClosedEventArgs  : AutomationEventArgs
#endif 
    {
        //-----------------------------------------------------
        //
        //  Constructors 
        //
        //----------------------------------------------------- 
 
        #region Constructors
 
        /// 
        /// Constructor for top-level window event args.
        /// 
        public WindowClosedEventArgs (int [] runtimeId) 
            : base(WindowPatternIdentifiers.WindowClosedEvent)
        { 
            if (runtimeId == null) 
            {
                throw new ArgumentNullException("runtimeId"); 
            }
            _runtimeId = (int[])runtimeId.Clone();
        }
 
        #endregion Constructors
 
 
        //------------------------------------------------------
        // 
        //  Public Properties
        //
        //-----------------------------------------------------
 
        #region Public Properties
 
        ///  
        /// Returns the Windows UI Automation runtime identifier
        ///  
        public int [] GetRuntimeId()
        {
            return (int [])_runtimeId.Clone();
        } 

        #endregion Public Properties 
 

        //------------------------------------------------------ 
        //
        //  Private Fields
        //
        //------------------------------------------------------ 

        #region Private Fields 
 
        private int [] _runtimeId;
 
        #endregion Private Fields
    }
}

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