The method AppendAdditionalComponentMenuItems
doesn’t compile in ScriptComponent. Why not?
protected override void AppendAdditionalComponentMenuItems(System.Windows.Forms.ToolStripDropDown menu)
{
ToolStripMenuItem item = Menu_AppendItem(menu, "blah, blah", ..., false, ...);
item.ToolTipText = "When checked, blah, blah, blah.";
}
I get this message:
Error (CS0115): ‘Script_Instance.AppendAdditionalComponentMenuItems(System.Windows.Forms.ToolStripDropDown)’: no suitable method found to override (line 259)
// Rolf