PropertyGridDesigner.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 / PropertyGridDesigner.cs / 1 / PropertyGridDesigner.cs

                            [assembly: System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode", Scope="member", Target="System.Windows.Forms.Design.PropertyGridDesigner..ctor()")] 
namespace System.Windows.Forms.Design {


    using System.Diagnostics; 

    using System; 
    using System.Windows.Forms; 
    using System.Drawing;
    using Microsoft.Win32; 

    using System.ComponentModel;
    using System.Drawing.Design;
    using System.ComponentModel.Design; 
    using System.Collections;
 
    ///  
    /// 
    ///     This class handles all design time behavior for the property grid class.  Group 
    ///     boxes may contain sub-components and therefore use the frame designer.
    /// 
    internal class PropertyGridDesigner : ControlDesigner {
 
        public PropertyGridDesigner() {
            AutoResizeHandles = true; 
        } 
       /// 
        ///  
        ///      Allows a designer to filter the set of properties
        ///      the component it is designing will expose through the
        ///      TypeDescriptor object.  This method is called
        ///      immediately before its corresponding "Post" method. 
        ///      If you are overriding this method you should call
        ///      the base implementation before you perform your own 
        ///      filtering. 
        /// 
        protected override void PreFilterProperties(IDictionary properties) { 

            // remove the ScrollableControl props...
            //
            properties.Remove("AutoScroll"); 
            properties.Remove("AutoScrollMargin");
            properties.Remove("DockPadding"); 
            properties.Remove("AutoScrollMinSize"); 

            base.PreFilterProperties(properties); 
        }
    }
}
 

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