0

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

代码片段:

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

但是,默认 contextMenu 已更改为新的 contextMenu。我想使用默认 + 新的 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 控件中。我将使用每一列和每一行的上下文菜单条。接近还是不正确?

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

4

1 回答 1

1

对于一个ContextMenuStrip,尝试使用ToolStripManager.Merge。我知道这是否适用于您的情况,但通常它会将第一个菜单中的所有项目合并到第二个菜单中。我在之前的两个实例中使用ContextMenuStrip过它,但我不知道 aDBDisplay是什么或它是如何在内部设计的。

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

首先你说ContextMenu,但是你的控件似乎实际上实现了一个ContextMenuStrip. 以防万一,ContextMenu您可以尝试使用Menu.MergeMenu

imageControl.ContextMenu.MergeMenu(newContextMenu);

编辑:(长居更新原问题后)

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

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

foreach (ToolStripItem tsItem in contextMenuStripTableLayout.Items)
    imageControl.ContextMenuStrip.Items.Add(tsItem);
于 2013-06-17T01:41:32.053 回答