MenuItemCollectionEditor.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / Designer / WebForms / System / Web / UI / Design / WebControls / MenuItemCollectionEditor.cs / 1 / MenuItemCollectionEditor.cs

                            //------------------------------------------------------------------------------ 
/// 
///    Copyright (c) Microsoft Corporation. All Rights Reserved.
///    Information Contained Herein is Proprietary and Confidential.
///  
//-----------------------------------------------------------------------------
namespace System.Web.UI.Design.WebControls { 
 
    using System;
    using System.Collections; 
    using System.ComponentModel;
    using System.ComponentModel.Design;
    using System.Design;
    using System.Diagnostics; 
    using System.Drawing;
    using System.Drawing.Design; 
    using System.Runtime.InteropServices; 
    using System.Web.UI.Design.Util;
    using System.Web.UI.WebControls; 
    using System.Windows.Forms;
    using System.Windows.Forms.Design;

    using WebMenu = System.Web.UI.WebControls.Menu; 

    ///  
    /// The editor for tree nodes collection in the Menu. 
    /// 
    public class MenuItemCollectionEditor : UITypeEditor { 

        public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) {
            IDesignerHost designerHost = (IDesignerHost)context.GetService(typeof(IDesignerHost));
            Debug.Assert(designerHost != null, "Didn't get a DesignerHost."); 

            Debug.Assert(context.Instance is WebMenu, "Expected System.Web.UI.WebControls.Menu"); 
            WebMenu menu = (WebMenu)context.Instance; 

            MenuDesigner designer = (MenuDesigner)designerHost.GetDesigner(menu); 
            Debug.Assert(designer != null, "Didn't get a designer.");

            designer.InvokeMenuItemCollectionEditor();
            return value; 
        }
 
        public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) { 
            return UITypeEditorEditStyle.Modal;
        } 
    }
}


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