Hi…Like this component, it has select different option…What code should I follow?c#?tnx
In your component, override the following:
protected override void AppendAdditionalComponentMenuItems(ToolStripDropDown menu)
{
Menu_AppendItem(menu, "Action", OnAction);
// there are many options that start with "Menu_Append..."
}
private void OnAction(object sender, EventArgs args)
{
}
1 Like