ChildChangedEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / wpf / src / WinFormsIntegration / System / Windows / Integration / ChildChangedEventArgs.cs / 1 / ChildChangedEventArgs.cs

                            using System.Diagnostics.CodeAnalysis; 
using System.Globalization;

namespace System.Windows.Forms.Integration
{ 
    /// 
    /// Occurs when the Child property changes. 
    ///  
    public class ChildChangedEventArgs : EventArgs
    { 
        /// 
        /// Initializes a new instance of the ChildChangedEventArgs class.
        /// 
        public ChildChangedEventArgs(object previousChild) 
        {
            _previousChild = previousChild; 
        } 

        private object _previousChild; 

        /// 
        /// The value of the Child property before it was set to a new value.
        ///  
        public object PreviousChild
        { 
            get 
            {
                return _previousChild; 
            }
        }
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
using System.Diagnostics.CodeAnalysis; 
using System.Globalization;

namespace System.Windows.Forms.Integration
{ 
    /// 
    /// Occurs when the Child property changes. 
    ///  
    public class ChildChangedEventArgs : EventArgs
    { 
        /// 
        /// Initializes a new instance of the ChildChangedEventArgs class.
        /// 
        public ChildChangedEventArgs(object previousChild) 
        {
            _previousChild = previousChild; 
        } 

        private object _previousChild; 

        /// 
        /// The value of the Child property before it was set to a new value.
        ///  
        public object PreviousChild
        { 
            get 
            {
                return _previousChild; 
            }
        }
    }
} 

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