StatusBarDesigner.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 / WinForms / System / WinForms / Design / StatusBarDesigner.cs / 1 / StatusBarDesigner.cs

                             
//------------------------------------------------------------------------------
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
//  
//-----------------------------------------------------------------------------
 
/* 
 */
 [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Windows.Forms.Design.StatusBarDesigner..ctor()")] 
namespace System.Windows.Forms.Design {

    using System.Runtime.InteropServices;
    using System.ComponentModel; 
    using System.Diagnostics;
    using System; 
    using System.ComponentModel.Design; 
    using System.Windows.Forms;
    using System.Collections; 

    /// 
    /// 
    ///      This class handles all design time behavior for the status bar class. 
    /// 
    internal class StatusBarDesigner : ControlDesigner { 
 
        public StatusBarDesigner() {
            AutoResizeHandles = true; 
        }

        /// 
        ///  
        ///    
        ///       Retrieves a list of associated components.  These are components that should be incluced in a cut or copy operation on this component. 
        ///     
        /// 
        public override ICollection AssociatedComponents { 
            get {
                StatusBar sb = Control as StatusBar;
                if (sb != null) {
                    return sb.Panels; 
                }
                return base.AssociatedComponents; 
            } 
        }
    } 
}


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