DataGridColumnEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / wpf / src / Framework / System / Windows / Controls / DataGridColumnEventArgs.cs / 1305600 / DataGridColumnEventArgs.cs

                            //---------------------------------------------------------------------------- 
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
//--------------------------------------------------------------------------- 

using System; 
 
namespace System.Windows.Controls
{ 
    /// 
    ///     EventArgs used for events related to DataGridColumn.
    /// 
    public class DataGridColumnEventArgs : EventArgs 
    {
        ///  
        ///     Instantiates a new instance of this class. 
        /// 
        public DataGridColumnEventArgs(DataGridColumn column) 
        {
            _column = column;
        }
 
        /// 
        ///     DataGridColumn that the DataGridColumnEventArgs refers to 
        ///  
        public DataGridColumn Column
        { 
            get { return _column; }
        }

        private DataGridColumn _column; 
    }
} 

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

using System; 
 
namespace System.Windows.Controls
{ 
    /// 
    ///     EventArgs used for events related to DataGridColumn.
    /// 
    public class DataGridColumnEventArgs : EventArgs 
    {
        ///  
        ///     Instantiates a new instance of this class. 
        /// 
        public DataGridColumnEventArgs(DataGridColumn column) 
        {
            _column = column;
        }
 
        /// 
        ///     DataGridColumn that the DataGridColumnEventArgs refers to 
        ///  
        public DataGridColumn Column
        { 
            get { return _column; }
        }

        private DataGridColumn _column; 
    }
} 

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