3 overrides of ContextMenu
System.Windows.Forms (3)
winforms\Managed\System\WinForms\AxHost.cs (1)
462public override ContextMenu ContextMenu {
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
1123public override ContextMenu ContextMenu {
winforms\Managed\System\WinForms\UpDownBase.cs (1)
322public override ContextMenu ContextMenu {
8 writes to ContextMenu
System.Web.Mobile (2)
UI\MobileControls\Design\StylesEditorDialog.cs (1)
225_tvDefinedStyles.ContextMenu = _cntxtMenu;
UI\MobileControls\Design\Util\EditableTreeList.cs (1)
80TvList.ContextMenu = CntxtMenu;
System.Windows.Forms (6)
winforms\Managed\System\WinForms\AxHost.cs (1)
468base.ContextMenu = value;
winforms\Managed\System\WinForms\Control.cs (1)
2222ContextMenu = null;
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
1128base.ContextMenu = value;
winforms\Managed\System\WinForms\ToolStripDropDown.cs (1)
278set { base.ContextMenu = value; }
winforms\Managed\System\WinForms\UpDownBase.cs (2)
327base.ContextMenu = value; 328this.upDownEdit.ContextMenu = value;
14 references to ContextMenu
System.Windows.Forms (14)
winforms\Managed\System\WinForms\AxHost.cs (1)
464return base.ContextMenu;
winforms\Managed\System\WinForms\ComboBox.cs (3)
1894if (this.ContextMenu != null || this.ContextMenuStrip != null) 1917if (this.ContextMenu != null) 1929if (this.ContextMenu != null || this.ContextMenuStrip != null) {
winforms\Managed\System\WinForms\Control.cs (1)
13210Menu menu = ContextMenu;
winforms\Managed\System\WinForms\Printing\PrintPreviewDialog.cs (1)
1125return base.ContextMenu;
winforms\Managed\System\WinForms\RichTextBox.cs (1)
4025ContextMenu cm = owner.ContextMenu;
winforms\Managed\System\WinForms\TextBoxBase.cs (3)
2247if (ContextMenu != null || ContextMenuStrip != null) { 2267if (ContextMenu != null) { 2268ContextMenu.Show(this, client);
winforms\Managed\System\WinForms\ToolStripDropDown.cs (1)
277get { return base.ContextMenu; }
winforms\Managed\System\WinForms\UpDownBase.cs (2)
324return base.ContextMenu; 1330if (ContextMenu == null && ContextMenuStrip != null) {
winforms\Managed\System\WinForms\WebBrowser.cs (1)
1615ContextMenu contextMenu = contextMenuStrip != null ? null : ContextMenu;