MenuCommandsChangedEventArgs.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / CompMod / System / ComponentModel / Design / MenuCommandsChangedEventArgs.cs / 1 / MenuCommandsChangedEventArgs.cs

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

namespace System.ComponentModel.Design { 
    using System.ComponentModel; 
    using System;
    using Microsoft.Win32; 

    /// 
    /// 
    ///     This EventArgs class is used by the MenuCommandService to signify 
    ///     that there has been a change in MenuCommands (added or removed)
    ///     on the related object. 
    ///  
    [System.Runtime.InteropServices.ComVisible(true)]
    public class MenuCommandsChangedEventArgs : EventArgs { 

        private MenuCommand command;
        private MenuCommandsChangedType changeType;//type of change
 
        /// 
        ///  
        ///     Constructor that requires the object in question, the type of change 
        ///     and the remaining commands left for the object.  "command" can be null
        ///     to signify multiple commands changed at once. 
        /// 
        public MenuCommandsChangedEventArgs(MenuCommandsChangedType changeType, MenuCommand command) {
            this.changeType = changeType;
            this.command = command; 
        }
 
        ///  
        /// 
        ///     The type of changed that caused the related event 
        ///     to be thrown.
        /// 
        public MenuCommandsChangedType ChangeType {
            get { 
                return changeType;
            } 
        } 

        ///  
        /// 
        ///     The command that was added/removed/changed.  This can be null if more than one command changed at once.
        /// 
        public MenuCommand Command { 
            get {
                return command; 
            } 
        }
    } 
}


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