如何在具有原始上下文菜单的控件中添加contextmenu?

时间:2013-06-17 00:13:54

标签: c# winforms contextmenu

我要将自定义contextMenuStrip添加到已经默认contextMenuStrip的控件中。

代码段:

   DBDisplay imageControl = new DBDisplay(); // This is third-party object
   imageControl.ContextMenuStrip = this.contextMenuStripTableLayout;

但是,默认的contextMenu已经更改了新的contextMenu。我想使用default + new contextMenu。有没有提示或帮助?

感谢格兰特。我还有一个问题。

更新了修改

           List<DBDisplay> m_pImage = new List<DBDisplay>();
           for (int i = 0; i < 10; i++)
           {
               DBDisplay imageControl = new DBDisplay();
               imageControl.Location = new System.Drawing.Point(0, 0);
               imageControl.Dock = System.Windows.Forms.DockStyle.Fill;
               imageControl.Size = new Size(columnWidth, rowHeight);

               foreach (ToolStripItem tsItem in contextMenuStripTableLayout.Items)
                   imageControl.ContextMenuStrip.Items.Add(tsItem);

               m_pImage.Add(imageControl);
           }

           int index = 0;
           for (int i = 0; i < columnCount; i++)
           {
                   //First add a column
                   tableLayoutPanel1.ColumnStyles.Add(new ColumnStyle(SizeType.Absolute, columnWidth));

                   for (int j = 0; j < rowCount; j++)
                   {

                       if (i == 0)
                       {
                           //defining the size of cell
                           tableLayoutPanel1.RowStyles.Add(new RowStyle(SizeType.Absolute, rowHeight));
                       }

                       tableLayoutPanel1.Controls.Add(m_pImage[index], i, j);

                       index++;
                   }
               }

我还有一个问题。如果我使用上面的代码,那么imageControl contextMenuStrip有10次重复。我该如何解决这个问题?

更新 基本上,m_pImage列表将添加在tableLayoutPanel1控件中。我将使用每个列和行contextmenustrip。接近与否是正确的吗?

Update2 好的,这是详细的源代码。 DBDisplay是DBCogDisplay。

using System.ComponentModel;
using System.Windows.Forms;
using Cognex.VisionPro.Display;

namespace DBSubClass
{
    public partial class DBCogDisplay : Cognex.VisionPro.Display.CogDisplay
    {
        public DBCogDisplay()
        {
            InitializeComponent();
            SetLayoutSettings();
            SetStyleSettings();
        }

        public DBCogDisplay(IContainer container)
        {
            container.Add(this);
            InitializeComponent();
            SetLayoutSettings();
            SetStyleSettings();
        }

        private void SetLayoutSettings()
        {
            base.AllowDrop = true;
            base.Dock = System.Windows.Forms.DockStyle.Fill;
            base.Location = new System.Drawing.Point(0, 0);
            base.MouseWheelMode = CogDisplayMouseWheelModeConstants.Zoom1;
            base.ContextMenuStrip.AllowMerge = true;
        }

        private void SetStyleSettings()
        {
            base.DoubleBuffered = true;
            this.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
            this.SetStyle(ControlStyles.ResizeRedraw, true);
            this.SetStyle(ControlStyles.UserPaint, true);
            this.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
            UpdateStyles();
        }
    }
}

这是CogDisplay类的对象描述。 http://www.hyperbook.com/cognex/vpro/ja/Cognex.VisionPro.Display.CogDisplay.html

1 个答案:

答案 0 :(得分:1)

对于ContextMenuStrip,请尝试使用ToolStripManager.Merge。我有 no 想法,如果这适用于你的情况,但通常它需要第一个菜单中的所有项目并将它们合并到第二个菜单中。我以前在ContextMenuStrip的两个实例上使用了这个,但我不知道DBDisplay是什么或者它是如何在内部设计的。

if (ToolStripManager.Merge(imageControl.ContextMenuStrip, newContextMenuStrip))
    imageControl.ContextMenuStrip = newContextMenuStrip;

首先你说ContextMenu,但是你的控制似乎实际上是ContextMenuStrip。以防万一,对于ContextMenu,您可以尝试使用Menu.MergeMenu

imageControl.ContextMenu.MergeMenu(newContextMenu);

编辑:(在Changju更新原始问题之后)

您正在将所有10个imageControl菜单合并到contextMenuStripTableLayout,因此您看到菜单项重复了10次。

我认为你只需要使用循环来添加它们:

foreach (ToolStripItem tsItem in contextMenuStripTableLayout.Items)
    imageControl.ContextMenuStrip.Items.Add(tsItem);