我要将自定义 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