DataGridColumnReorderingEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

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

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

using System; 
using System.Windows; 

namespace System.Windows.Controls 
{
    /// 
    /// Event args used for Column reordering event raised after column header drag-drop
    ///  
    public class DataGridColumnReorderingEventArgs : DataGridColumnEventArgs
    { 
        #region Constructors 

        ///  
        /// Constructor
        /// 
        /// 
        public DataGridColumnReorderingEventArgs(DataGridColumn dataGridColumn) 
            : base(dataGridColumn)
        { 
        } 

        #endregion 

        #region Properties

        ///  
        /// Property to specify whether the Reordering operation should be cancelled
        ///  
        public bool Cancel 
        {
            get 
            {
                return _cancel;
            }
 
            set
            { 
                _cancel = value; 
            }
        } 

        /// 
        /// The control which would be used as an indicator for drop location during column header drag drop
        ///  
        public Control DropLocationIndicator
        { 
            get 
            {
                return _dropLocationIndicator; 
            }

            set
            { 
                _dropLocationIndicator = value;
            } 
        } 

        ///  
        /// The control which would be used as a drag indicator during column header drag drop.
        /// 
        public Control DragIndicator
        { 
            get
            { 
                return _dragIndicator; 
            }
 
            set
            {
                _dragIndicator = value;
            } 
        }
 
        #endregion 

        #region Data 

        private bool _cancel;
        private Control _dropLocationIndicator;
        private Control _dragIndicator; 

        #endregion 
    } 
}

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