当前位置: 首页>>代码示例>>C#>>正文


C# MenuStrip.Invoke方法代码示例

本文整理汇总了C#中System.Windows.Forms.MenuStrip.Invoke方法的典型用法代码示例。如果您正苦于以下问题:C# MenuStrip.Invoke方法的具体用法?C# MenuStrip.Invoke怎么用?C# MenuStrip.Invoke使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在System.Windows.Forms.MenuStrip的用法示例。


在下文中一共展示了MenuStrip.Invoke方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: SetMenu

 private void SetMenu(MenuStrip Info)
 {
     if (Info.InvokeRequired)
     {
         menuDelegate DDD = new menuDelegate(SetMenu);
         Info.Invoke(DDD, new object[] { Info });
     }
     else
     {
         экспортToolStripMenuItem.Enabled = true;
         вTxtToolStripMenuItem.Enabled = true;
         вXSLToolStripMenuItem.Enabled = true;
     }
 }
开发者ID:Cagyo,项目名称:domain-checker,代码行数:14,代码来源:Form1.cs

示例2: LoadEditorForm

        public override void LoadEditorForm(TabControl ScriptsTab, MenuStrip mainMenu)
        {
            ScriptsTab.TabPages.Add(AddEditorTab());
            this.editorText.KeyPress += new KeyPressEventHandler(editorText_KeyPress);

            mainMenu.Invoke((MethodInvoker)delegate()
            {
                scriptMenu.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
                    loadScript, unloadScript, newScript, saveScript});

                int i = 1;

                foreach (String file in icechatVBScripts.listScripts)
                {
                    if (File.Exists(this.CurrentFolder + Path.DirectorySeparatorChar + "Scripts" + Path.DirectorySeparatorChar + file))
                    {
                        System.Diagnostics.Debug.WriteLine("loading script file into editor and add to menu: " + file);

                        ToolStripMenuItem s = new ToolStripMenuItem(file);
                        s.Name = file;
                        s.Click += new EventHandler(loadedScript_Click);
                        s.Tag = "saved";

                        //load the first one in the editor
                        if (i == 1)
                        {
                            s.Checked = true;

                            StreamReader sr = new StreamReader(this.CurrentFolder + Path.DirectorySeparatorChar + "Scripts" + Path.DirectorySeparatorChar + file);
                            editorText.Text = sr.ReadToEnd();
                            sr.Close();
                        }

                        loadedScripts.DropDownItems.AddRange(new ToolStripItem[] {
                            s
                        });

                        i++;
                    }
                }

                mainMenu.Items.Add(scriptMenu);
                mainMenu.Items.Add(loadedScripts);

                //System.Diagnostics.Debug.WriteLine("script items:" + loadedScripts.DropDownItems.Count);

            });
        }
开发者ID:nicholatian,项目名称:monody,代码行数:48,代码来源:VBScriptPlugin.cs


注:本文中的System.Windows.Forms.MenuStrip.Invoke方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。