Click here to Skip to main content
Click here to Skip to main content

Super Context Menu Strip

By , 5 Oct 2009
 
Picture1_small.JPG
Figure 1: You can put any group of controls on the pop-up context menu.

Introduction

Long time ago, I wondered how Microsoft Access put an Edit control on the context menu!!! Then I got another idea… why we do not use any control(s) on the context menu??? This will make the user interface easier to use and learn and even faster. The good news here is that, you can make it the same way you design a user control or a form using the Visual Studio designer.

Background

At first, I thought we could customize the Menu. Then I discovered that this is very hard and maybe impossible. I tried to make use of the Form, but this is not the right choice because when we show it, the parent form loses its focus. A context menu shouldn't cause that. Luckily, I found a very good article "Simple Pop-up Control" by Lukasz Swiatkowski. This article shows how to display a pop up control using the ToolStripDropDown class. Then I said, "I found it." I used that idea to make my idea: a context menu that contains any group of controls. And now, I have a new and easier implementation.

How It Works

SuperContextMenuStrip is based on ContextMenuStrip which adds a user control to a ToolStripControlHost then adds the host as an item to the menu.

Using the Code

  1. Add a user control to your project and put any group of controls in it, the way you like, but make them public so that you can add event handlers to them.
  2. Override ProcessDialogKey in your user control and make sure it is as shown in the sample code.
  3. Please have a look at the main from source code, you will find it so easy to use it.

Known Bugs

I still have these bugs but I am working on them. If you have any idea how to solve these bugs, please help me.

  1. If the pop-up menu is shown and the user clicks a MenuStrip, a ToolStrip or an item on them, it does not hide. It needs two clicks to hide!!!
  2. The System.Windows.Forms.ComboBox class behaves in a strange way. It closes the container when the user clicks on the part of the combo box's dropdown list that sticks out of the container area. So, make sure that the dropdown list is totally inside the area.

Suggested Add-on Features and Ideas

  • Add a small x button to close it
  • Easily move it
  • Allow resizing
    (But I don't recommend these changes, because they violate the concept of a menu; but you may find it a good idea.)
  • You can use it to implement custom tool tip, intellisense menus like Visual Studio.

History

  • October 2009
    • Completely changed the structure (AGAIN) to make it easier to use
  • June 2008
    • Completely changed the structure to make it easier to use
    • Solved the tab bug
  • December 2007
    • First release

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Hany Badrous
Engineer
United States United States
Member
No Biography provided

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
Questionthe control I want to pop is a dynamic onememberidn197823 Nov '11 - 15:21 
but it doesn't work at all. It still showes the original control that I draw in the design mode.
Anyone can help me? Cry | :((
GeneralMy vote of 5memberaaroncampf13 May '11 - 19:49 
Simple and EFFECTIVE!!!
GeneralGreat!!!memberminhhieu_dotnet3 Nov '10 - 0:07 
Great! Thanks so much. It save me time. Thumbs Up | :thumbsup:
Plaster&ceiling
GeneralRe: Great!!!memberHany Badrous3 Nov '10 - 15:22 
you welcome Smile | :)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Hany Badrous
Love programming like playing music

QuestionHow to remove dropshadow?memberEdmilson S. Teixeira10 Aug '10 - 11:14 
I need the control without dropshadow. How do I get it???
It is possible using API?
AnswerRe: How to remove dropshadow?memberEdmilson S. Teixeira13 Aug '10 - 11:28 
I found the solution.
Just set: ToolStripDropDown.DropShadowEnabled = false;
QuestionContextMenuStrip problemmemberMartin Macak26 Feb '10 - 8:46 
Hi.
I have found an issue when using the ContextMenuStrip within the ToolStripDropDown control host. The problem is when the ContextMenuStrip is shown, the pop-up window is closed just in the moment the context menu's pop-up window appears.
This problem is resolved while using the ContextMenu class (which is pretty much deprecated in the moment). I was unable to solve this problem and don't want to use the ContextMenu instead of ContextMenuStrip. I have an intuition that the problem is that the ContextMenuStrip receives or is shown with WM_ACTIVATE but the ContextMenu does not. Do you have any idea how to solve this problem?
Generala bug on example projectmembermheidari11 Jul '09 - 20:55 
on the trackbar scroll event 0 value throws an exception Thumbs Up | :thumbsup:
 
If you think you has fallen out of an elephant's nose ; I make you a donkey

GeneralRe: a bug on example projectmemberHany Badrous12 Jul '09 - 2:48 
right,thank you, it is because the font can not be set to zero....i did not focus on this as much as the example demonstrate the use of the context menu.
 
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Hany Badrous
Love programming like playing music

GeneralRe: a bug on example projectmembermheidari12 Aug '09 - 1:42 
you are welcome
 
If you think you has fallen out of an elephant's nose ; I make you a donkey

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 5 Oct 2009
Article Copyright 2008 by Hany Badrous
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid