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

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

/* 
 */ 
namespace System.Windows.Forms.Design {
    using System.Design; 
    using Accessibility;
    using System.ComponentModel;
    using System.Diagnostics;
    using System.Diagnostics.CodeAnalysis; 
    using System;
    using System.Security; 
    using System.Security.Permissions; 
    using System.Collections;
    using System.ComponentModel.Design; 
    using System.Windows.Forms;
    using System.Runtime.Serialization;
    using System.ComponentModel.Design.Serialization;
    using System.Drawing; 
    using System.Windows.Forms.Design.Behavior;
    using System.Globalization; 
 
    /// 
    ///  Internal class to provide 'Insert Standard Items" verb for ToolStrips & MenuStrips. 
    /// 
    internal class StandardMenuStripVerb {

        private ToolStripDesigner               _designer; 
        private IDesignerHost                   _host;
        private IComponentChangeService         componentChangeSvc; 
        private IServiceProvider                _provider; 

        ///  
        /// Create one of these things...
        /// 
        internal StandardMenuStripVerb(string text, ToolStripDesigner designer) {
            Debug.Assert(designer != null, "Can't have a StandardMenuStripVerb without an associated designer"); 
            this._designer = designer;
            this._provider = designer.Component.Site; 
            this._host = (IDesignerHost)_provider.GetService(typeof(IDesignerHost)); 
            componentChangeSvc = (IComponentChangeService)_provider.GetService(typeof(IComponentChangeService));
 
            if (text == null) {
                text = SR.GetString(SR.ToolStripDesignerStandardItemsVerb);
            }
 
        }
 
        ///  
        /// When the verb is invoked, use all the stuff above to show the dialog, etc.
        ///  
        [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        public void InsertItems() {
            DesignerActionUIService actionUIService = (DesignerActionUIService)_host.GetService(typeof(DesignerActionUIService));
            if (actionUIService != null) 
            {
                actionUIService.HideUI(_designer.Component); 
            } 

 
            Cursor current = Cursor.Current;
            try {
                Cursor.Current = Cursors.WaitCursor;
                if (_designer.Component is MenuStrip) { 
                    CreateStandardMenuStrip(_host, (MenuStrip)_designer.Component);
                } 
                else { 
                    CreateStandardToolStrip(_host, (ToolStrip)_designer.Component);
                } 
            }
            finally {
                Cursor.Current = current;
            } 

        } 
 

        ///  
        /// Here is where all the fun stuff starts.  We create the structure and apply the naming here.
        /// 
        [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes")] 
        [SuppressMessage("Microsoft.Security", "CA2102:CatchNonClsCompliantExceptionsInGeneralHandlers")]
        private void CreateStandardMenuStrip(System.ComponentModel.Design.IDesignerHost host, MenuStrip tool) { 
 
            // build the static menu items structure.
            // 
            string[][] menuItemNames = new string[][]{
            new string[]{SR.GetString(SR.StandardMenuFile), SR.GetString(SR.StandardMenuNew), SR.GetString(SR.StandardMenuOpen), "-", SR.GetString(SR.StandardMenuSave), SR.GetString(SR.StandardMenuSaveAs), "-", SR.GetString(SR.StandardMenuPrint), SR.GetString(SR.StandardMenuPrintPreview), "-", SR.GetString(SR.StandardMenuExit)},
            new string[]{SR.GetString(SR.StandardMenuEdit), SR.GetString(SR.StandardMenuUndo), SR.GetString(SR.StandardMenuRedo), "-", SR.GetString(SR.StandardMenuCut), SR.GetString(SR.StandardMenuCopy), SR.GetString(SR.StandardMenuPaste), "-", SR.GetString(SR.StandardMenuSelectAll)},
            new string[]{SR.GetString(SR.StandardMenuTools), SR.GetString(SR.StandardMenuCustomize), SR.GetString(SR.StandardMenuOptions)}, 
            new string[]{SR.GetString(SR.StandardMenuHelp), SR.GetString(SR.StandardMenuContents), SR.GetString(SR.StandardMenuIndex), SR.GetString(SR.StandardMenuSearch), "-", SR.GetString(SR.StandardMenuAbout)}};
 
            // build the static menu items image list that maps one-one with above menuItems structure. 
            //
            // this is required so that the in LOCALIZED build we dont use the Localized item string. 
            // refer to VS Whidbey : 314348 for more details.
            string[][] menuItemImageNames = new string[][]{
            new string[]{"","new", "open", "-", "save", "", "-", "print", "printPreview", "-", ""},
            new string[]{"", "", "", "-", "cut", "copy", "paste", "-", ""}, 
            new string[]{"", "", ""},
            new string[]{"", "", "", "", "-", ""}}; 
 
            Keys[][] menuItemShortcuts = new Keys[][]{
                        new Keys[]{/*File*/Keys.None, /*New*/Keys.Control | Keys.N, /*Open*/Keys.Control | Keys.O, /*Separator*/ Keys.None, /*Save*/ Keys.Control | Keys.S, /*SaveAs*/Keys.None, Keys.None, /*Print*/ Keys.Control | Keys.P, /*PrintPreview*/ Keys.None, /*Separator*/Keys.None, /*Exit*/ Keys.None}, 
                        new Keys[]{/*Edit*/Keys.None, /*Undo*/Keys.Control | Keys.Z, /*Redo*/Keys.Control | Keys.Y, /*Separator*/Keys.None, /*Cut*/ Keys.Control | Keys.X, /*Copy*/ Keys.Control | Keys.C, /*Paste*/Keys.Control | Keys.V, /*Separator*/ Keys.None, /*SelectAll*/Keys.None},
                        new Keys[]{/*Tools*/Keys.None, /*Customize*/Keys.None, /*Options*/Keys.None},
                        new Keys[]{/*Help*/Keys.None, /*Contents*/Keys.None, /*Index*/Keys.None, /*Search*/Keys.None,/*Separator*/Keys.None , /*About*/Keys.None}};
 
            Debug.Assert(host != null, "can't create standard menu without designer _host.");
 
            if (host == null) { 
                return;
            } 

            tool.SuspendLayout ();
            ToolStripDesigner._autoAddNewItems = false;
 
            // create a transaction so this happens as an atomic unit.
            DesignerTransaction createMenu = _host.CreateTransaction(SR.GetString(SR.StandardMenuCreateDesc)); 
 
            try {
                INameCreationService nameCreationService = (INameCreationService)_provider.GetService(typeof(INameCreationService)); 
                string defaultName = "standardMainMenuStrip";
                string name = defaultName;
                int index = 1;
 
                if (host != null) {
                    while (_host.Container.Components[name] != null) { 
                        name = defaultName + (index++).ToString(CultureInfo.InvariantCulture); 
                    }
                } 

                // now build the menu items themselves.
                //
                for (int j = 0; j < menuItemNames.Length; j++) { 

                    string[] menuArray = menuItemNames[j]; 
                    ToolStripMenuItem rootItem = null; 
                    for (int i = 0; i < menuArray.Length; i++) {
                        name = null; 

                        // for separators, just use the default name.  Otherwise, remove any non-characters and
                        // get the name from the text.
                        // 
                        string itemText = menuArray[i];
 
                        name = NameFromText(itemText, typeof(ToolStripMenuItem),  nameCreationService, true); 

                        ToolStripItem item = null; 

                        if (name.Contains("Separator")) {
                            // create the componennt.
                            // 
                            item = (ToolStripSeparator)_host.CreateComponent(typeof(ToolStripSeparator), name);
                            IDesigner designer = _host.GetDesigner(item); 
                            if (designer is ComponentDesigner) { 
                                ((ComponentDesigner) designer).InitializeNewComponent(null);
                            } 

                            item.Text = itemText;
                        }
                        else { 

                            // create the componennt. 
                            // 
                            item = (ToolStripMenuItem)_host.CreateComponent(typeof(ToolStripMenuItem), name);
                            IDesigner designer = _host.GetDesigner(item); 
                            if (designer is ComponentDesigner) {
                                ((ComponentDesigner) designer).InitializeNewComponent(null);
                            }
 
                            item.Text = itemText;
 
                            Keys shortcut = menuItemShortcuts[j][i]; 
                            if ((item is ToolStripMenuItem) && shortcut != Keys.None) {
                                if (!ToolStripManager.IsShortcutDefined(shortcut) && ToolStripManager.IsValidShortcut(shortcut) ) { 
                                    ((ToolStripMenuItem)item).ShortcutKeys = shortcut;
                                }
                            }
                            Bitmap image = null; 
                            try
                            { 
                                image = GetImage(menuItemImageNames[j][i]); 
                            }
                            catch 
                            {
                                // eat the exception..
                                // as you may not find image for all MenuItems.
                            } 
                            if (image != null) {
 
                                PropertyDescriptor imageProperty = TypeDescriptor.GetProperties(item)["Image"]; 
                                Debug.Assert( imageProperty!= null, "Could not find 'Image' property in ToolStripItem." );
                                if( imageProperty != null ) 
                                {
                                    imageProperty.SetValue(item, image);
                                }
                                //item.Image = image; 
                                item.ImageTransparentColor = Color.Magenta;
                            } 
 
                        }
 
                        // the first item in each array is the root item.
                        //
                        if (i == 0) {
                            rootItem = (ToolStripMenuItem)item; 
                            rootItem.DropDown.SuspendLayout();
                        } 
                        else { 
                            rootItem.DropDownItems.Add(item);
                        } 
                        //If Last SubItem Added the Raise the Events
                        if (i == menuArray.Length -1)
                        {
                            // member is OK to be null... 
                            //
                            MemberDescriptor member = TypeDescriptor.GetProperties(rootItem)["DropDownItems"]; 
                            componentChangeSvc.OnComponentChanging(rootItem, member); 
                            componentChangeSvc.OnComponentChanged(rootItem, member, null, null);
                        } 
                    }

                    // finally, add it to the MainMenu.
                    rootItem.DropDown.ResumeLayout(false); 
                    tool.Items.Add(rootItem);
 
                    //If Last SubItem Added the Raise the Events 
                    if (j == menuItemNames.Length -1)
                    { 
                        // member is OK to be null...
                        //
                        MemberDescriptor topMember = TypeDescriptor.GetProperties(tool)["Items"];
                        componentChangeSvc.OnComponentChanging(tool, topMember); 
                        componentChangeSvc.OnComponentChanged(tool, topMember, null, null);
                    } 
 
                }
            } 
            catch (Exception e){
                if (e is System.InvalidOperationException) {
                    IUIService uiService = (IUIService) _provider.GetService(typeof(IUIService));
                    uiService.ShowError(e.Message); 
                }
                if (createMenu != null) 
                { 
                    createMenu.Cancel();
                    createMenu = null; 
                }

            }
            finally { 

                ToolStripDesigner._autoAddNewItems = true; 
                if (createMenu != null) 
                {
                    createMenu.Commit(); 
                    createMenu = null;
                }
                tool.ResumeLayout ();
 
                // Select the Main Menu...
                ISelectionService selSvc = (ISelectionService)_provider.GetService(typeof(ISelectionService)); 
                if (selSvc != null) { 
                    selSvc.SetSelectedComponents(new object[]{ _designer.Component });
                } 

                //Refresh the Glyph
                DesignerActionUIService actionUIService = (DesignerActionUIService)_provider.GetService(typeof(DesignerActionUIService));
                if (actionUIService != null) 
                {
                   actionUIService.Refresh( _designer.Component); 
                } 
                // this will invalidate the Selection Glyphs.
                SelectionManager selMgr = (SelectionManager)_provider.GetService(typeof(SelectionManager)); 
                selMgr.Refresh();
            }
        }
 
        /// 
        /// Here is where all the fun stuff starts.  We create the structure and apply the naming here. 
        ///  
        [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        [SuppressMessage("Microsoft.Design", "CA1031:DoNotCatchGeneralExceptionTypes")] 
        [SuppressMessage("Microsoft.Security", "CA2102:CatchNonClsCompliantExceptionsInGeneralHandlers")]
        private void CreateStandardToolStrip(System.ComponentModel.Design.IDesignerHost host, ToolStrip tool) {

            // build the static menu items structure. 
            //
            string[] menuItemNames = new string[]{SR.GetString(SR.StandardMenuNew),SR.GetString(SR.StandardMenuOpen), SR.GetString(SR.StandardMenuSave), SR.GetString(SR.StandardMenuPrint), "-", SR.GetString(SR.StandardToolCut), SR.GetString(SR.StandardMenuCopy), SR.GetString(SR.StandardMenuPaste), "-", SR.GetString(SR.StandardToolHelp)}; 
 
            //build a image list mapping one-one the above menuItems list...
            // this is required so that the in LOCALIZED build we dont use the Localized item string. 
            // refer to VS Whidbey : 314348 for more details.
            string[] menuItemImageNames = new string[]{"new","open", "save", "print", "-", "cut", "copy", "paste", "-", "help"};

            Debug.Assert(host != null, "can't create standard menu without designer _host."); 

            if (host == null) { 
                return; 
            }
 
            tool.SuspendLayout ();
            ToolStripDesigner._autoAddNewItems = false;

            // create a transaction so this happens as an atomic unit. 
            DesignerTransaction createMenu = _host.CreateTransaction(SR.GetString(SR.StandardMenuCreateDesc));
 
            try { 
                INameCreationService nameCreationService = (INameCreationService)_provider.GetService(typeof(INameCreationService));
                string defaultName = "standardMainToolStrip"; 
                string name = defaultName;
                int index = 1;

                if (host != null) { 
                    while (_host.Container.Components[name] != null) {
                        name = defaultName + (index++).ToString(CultureInfo.InvariantCulture); 
                    } 
                }
 
                //keep an index in the MenuItemImageNames .. so that mapping is maintained.
                int menuItemImageNamesCount = 0;

                // now build the menu items themselves. 
                //
                foreach (string itemText in menuItemNames) { 
 
                    name = null;
 
                    // for separators, just use the default name.  Otherwise, remove any non-characters and
                    // get the name from the text.
                    //
                    defaultName = "ToolStripButton"; 

                    name = NameFromText(itemText, typeof(ToolStripButton), nameCreationService, true); 
                    ToolStripItem item = null; 

                    if (name.Contains("Separator")) { 
                        // create the componennt.
                        //
                        item = (ToolStripSeparator)_host.CreateComponent(typeof(ToolStripSeparator), name);
                        IDesigner designer = _host.GetDesigner(item); 
                        if (designer is ComponentDesigner) {
                            ((ComponentDesigner) designer).InitializeNewComponent(null); 
                        } 

                    } 
                    else {
                        // create the componennt.
                        //
                        item = (ToolStripButton)_host.CreateComponent(typeof(ToolStripButton), name); 
                        IDesigner designer = _host.GetDesigner(item);
                        if (designer is ComponentDesigner) { 
                            ((ComponentDesigner) designer).InitializeNewComponent(null); 
                        }
 
                        PropertyDescriptor displayStyleProperty = TypeDescriptor.GetProperties(item)["DisplayStyle"];
                        Debug.Assert( displayStyleProperty!= null, "Could not find 'Text' property in ToolStripItem." );
                        if( displayStyleProperty != null )
                        { 
                            displayStyleProperty.SetValue(item, ToolStripItemDisplayStyle.Image);
                        } 
 
                        PropertyDescriptor textProperty = TypeDescriptor.GetProperties(item)["Text"];
                        Debug.Assert( textProperty!= null, "Could not find 'Text' property in ToolStripItem." ); 
                        if( textProperty != null )
                        {
                            textProperty.SetValue(item, itemText);
                        } 

                        Bitmap image = null; 
                        try 
                        {
                            image = GetImage(menuItemImageNames[menuItemImageNamesCount]) ; 
                        }
                        catch
                        {
                            // eat the exception.. 
                            // as you may not find image for all MenuItems.
                        } 
                        if (image != null) { 

                            PropertyDescriptor imageProperty = TypeDescriptor.GetProperties(item)["Image"]; 
                            Debug.Assert( imageProperty != null, "Could not find 'Image' property in ToolStripItem." );
                            if( imageProperty != null )
                            {
                                imageProperty.SetValue(item, image); 
                            }
 
                            item.ImageTransparentColor = Color.Magenta; 
                        }
 
                    }

                    tool.Items.Add(item);
 
                    //increment the counter...
                    menuItemImageNamesCount++; 
                } 
                // finally, add it to the Main ToolStrip.
                MemberDescriptor topMember = TypeDescriptor.GetProperties(tool)["Items"]; 
                componentChangeSvc.OnComponentChanging(tool, topMember);
                componentChangeSvc.OnComponentChanged(tool, topMember, null, null);
            }
            catch (Exception e){ 
                if (e is System.InvalidOperationException) {
                    IUIService uiService = (IUIService)_provider.GetService(typeof(IUIService)); 
                    uiService.ShowError(e.Message); 
                }
                if (createMenu != null) 
                {
                    createMenu.Cancel();
                    createMenu = null;
                } 
            }
            finally { 
                //Reset the AutoAdd state 
                ToolStripDesigner._autoAddNewItems = true;
 
                if (createMenu != null)
                {
                    createMenu.Commit();
                    createMenu = null; 
                }
                tool.ResumeLayout (); 
 
                // Select the Main Menu...
                ISelectionService selSvc = (ISelectionService)_provider.GetService(typeof(ISelectionService)); 
                if (selSvc != null) {
                    selSvc.SetSelectedComponents(new object[]{ _designer.Component });
                }
 
                //Refresh the Glyph
                DesignerActionUIService actionUIService = (DesignerActionUIService)_provider.GetService(typeof(DesignerActionUIService)); 
                if (actionUIService != null) 
                {
                   actionUIService.Refresh( _designer.Component); 
                }

                // this will invalidate the Selection Glyphs.
                SelectionManager selMgr = (SelectionManager)_provider.GetService(typeof(SelectionManager)); 
                selMgr.Refresh();
 
            } 

        } 

        /// 
        /// Helper Function to get Images from types.
        ///  
        [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        private Bitmap GetImage(string name) 
        { 
            Bitmap image = null;
 
            if (name.StartsWith("new")) {
                image = new Bitmap(typeof(ToolStripMenuItem), "new.bmp");
            }
            else if (name.StartsWith("open")) { 
                image = new Bitmap(typeof(ToolStripMenuItem), "open.bmp");
            } 
            else if (name.StartsWith("save")) { 
                image = new Bitmap(typeof(ToolStripMenuItem), "save.bmp");
            } 
            else if (name.StartsWith("printPreview")) {
                image = new Bitmap(typeof(ToolStripMenuItem), "printPreview.bmp");
            }
            else if (name.StartsWith("print")) { 
                image = new Bitmap(typeof(ToolStripMenuItem), "print.bmp");
            } 
            else if (name.StartsWith("cut")) { 
                image = new Bitmap(typeof(ToolStripMenuItem), "cut.bmp");
            } 
            else if (name.StartsWith("copy")) {
                image = new Bitmap(typeof(ToolStripMenuItem), "copy.bmp");
            }
            else if (name.StartsWith("paste")) { 
                image = new Bitmap(typeof(ToolStripMenuItem), "paste.bmp");
            } 
            else if (name.StartsWith("help")) { 
                image = new Bitmap(typeof(ToolStripMenuItem), "help.bmp");
            } 
            return image;

        }
 
        /// 
        ///     Computes a name from a text label by removing all spaces and non-alphanumeric characters. 
        ///  
        [SuppressMessage("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
        private string NameFromText(string text, Type itemType, INameCreationService nameCreationService, bool adjustCapitalization) { 

            string baseName = null;

            // for separators, name them ToolStripSeparator... 
            //
            if (text == "-") { 
                baseName =  "toolStripSeparator"; 
            }
            else { 
                string nameSuffix = itemType.Name;

                // remove all the non letter and number characters.   Append length of "MenuItem"
                // 
                System.Text.StringBuilder name = new System.Text.StringBuilder(text.Length + nameSuffix.Length);
 
 
               bool firstCharSeen = false;
                for (int i = 0; i < text.Length; i++) { 

                    char c = text[i];
                    if (Char.IsLetterOrDigit(c)) {
                        if (!firstCharSeen) { 
                            c = Char.ToLower(c, CultureInfo.CurrentCulture);
                            firstCharSeen = true; 
                        } 
                        name.Append(c);
                    } 
                }
                name.Append(nameSuffix);

                baseName = name.ToString(); 
                if (adjustCapitalization) {
                    string nameOfRandomItem = ToolStripDesigner.NameFromText(null, typeof(ToolStripMenuItem), 
                        _designer.Component.Site); 
                    if (!string.IsNullOrEmpty(nameOfRandomItem) && char.IsUpper(nameOfRandomItem[0])) {
                        baseName = char.ToUpper(baseName[0], CultureInfo.InvariantCulture) + baseName.Substring(1); 
                    }
                }

            } 

            // see if this name matches another one in the container.. 
            // 
            object existingComponent = _host.Container.Components[baseName];
 
            if (existingComponent == null) {

                if (!nameCreationService.IsValidName(baseName)) {
                    // we don't have a name collision but this still isn't a valid name...something is wrong and we 
                    // can't make a valid identifier out of this so bail.
                    // 
                    return nameCreationService.CreateName(_host.Container, itemType); 
                }
                else { 
                    return baseName;
                }
            }
            else { 
                // start appending numbers.
                // 
                string newName = baseName; 
                for (int indexer = 1; !nameCreationService.IsValidName(newName); indexer++) {
                    newName = baseName + indexer.ToString(CultureInfo.InvariantCulture); 
                }
                return newName;
            }
        } 
     }
} 
 

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