2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
QAT context menuThe 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
|
2X faster development
The ultimate WinForms UI toolkit to boost your development speed.
This page will automatically be redirected to the sign-in page in 10 seconds.