Articles in this section
Category / Section

How to access the QAT context menu items in WinForms RibbonControlAdv?

1 min read

QAT context menu

The QAT context menu items can be accessed through the DropDownEventArgs of the BeforeCustomizeDropDownPopup event. RibbonControlAdv has two events BeforeCustomizeDropDownPopup and AfterCustomizeDropDownPopup events that are triggered before and after the CustomizeDropDownPopup is activated with the DropDownEventArgs the QAT context menu can be customized such as adding new items, accessing existing items and so on.

C#

ToolStripButton newItem = new ToolStripButton();
private void ribbonControlAdv1_BeforeCustomizeDropDownPopup(object sender, DropDownEventArgs e)
{
    newItem.Text = "New Item";
    e.DropDown.Items.Add(newItem);
    foreach (ToolStripItem ts in e.DropDown.Items)
    {
        this.listBox1.Items.Add(ts.Text);
    }
}

VB

Private newItem As ToolStripButton = New ToolStripButton()
Private Sub ribbonControlAdv1_BeforeCustomizeDropDownPopup(ByVal sender As Object, ByVal e As DropDownEventArgs)
    newItem.Text = "New Item"
    e.DropDown.Items.Add(newItem)
    For Each ts As ToolStripItem In e.DropDown.Items
        Me.listBox1.Items.Add(ts.Text)
    Next ts
End Sub

 

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied