473,395 Members | 1,526 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Context menu persisting beyond its scope

A context menu is created in the scope of the RightClick event, but it
continues to be displayed after that event handler terminates - i.e.
after it has gone out of scope. The code works correctly, but I feel a
bit odd about it. Is there anything to watch out for here?

By the way, the reason I'm creating the menu dynamically every time is
that the menu's contents and enabled-states can change based on what
the user does, and I don't want to duplicate all of that logic for a
separately maintained context menu.

private void map_RightClick(object sender, EventArgs e)
{
ContextMenu myMenu = new ContextMenu();

MenuItem[] items = (MenuItem[]) new ArrayList(
mnuEdit.MenuItems).ToArray(typeof(MenuItem));

foreach (MenuItem item in items)
myMenu.MenuItems.Add(item.CloneMenu());

myMenu.Show(this, this.PointToClient(Control.MousePosition));
}
Apr 21 '06 #1
2 1418
"Paul E Collins" <fi******************@CL4.org> wrote:
A context menu is created in the scope of the RightClick event, but it
continues to be displayed after that event handler terminates
No it doesn't! Set a breakpoint at the closing brace. You'll see that
the "Show" command is modal -- i.e. it doesn't return until after the
user has made a selection.

The code works correctly, but I feel a
bit odd about it. Is there anything to watch out for here?


How does Show() accomplish its magic, of being modal while still
allowing the application to pump messages? What will happen if the
user right-clicks to bring up your menu, but then right-clicks again
so invoking your right-click handler and showing a new popup menu even
while the old popup menu is still around?

Fortunately you're saved from this problem. My guess is that they
anticipated this precise case: and they coded it so that, while you're
inside ContextMenu.Show(), it closes itself before proceeding with the
next event.

What if you popped up a context-menu in response to a timer event, and
so the event caused another context-menu to pop up even while the old
context-menu was still visible? This seems not to happen. I don't know
why. We give thanks to the gods of Windows.Forms.
PS. I think it's perfectly good design to create the menu dynamically
each time.

--
Lucian
Apr 21 '06 #2
> PS. I think it's perfectly good design to create the menu dynamically
each time.


The only problem that comes from this design:
You wont be able to use Shortcuts, as the proper MenuItem doesn't exist.
Even worth: You might end up calling some functions wich you belived
disabled.
That's why I prefer to recreate my menuitems on some sort of
DataChange-Event.

Michael Sander
Apr 25 '06 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Mohit Gupta | last post by:
Hi all, Lately I have been working on an application in VB .net CF for Pocket PC device. I have a small question about Context Menu. When I try to close the window after context menu is poped...
5
by: Dean L. Howen | last post by:
Dear friends, Could we determine when context menu should appear?
8
by: Dennis C. Drumm | last post by:
Is there a way to modify the standard context menu shown when someone right clicks in a windows text box and that would work for all open windows applications? The standard context menu for...
0
by: VP | last post by:
G'day folks, well i am attempting to get an understanding on how to create the menuitems in a context menu on the fly. So far I have managed to actually achieve the menu items being created for...
6
by: Sandy | last post by:
Hello - I have a book that illustrates pulling menu items from a Sql Server table into an ascx via a stored procedure. Is this something that is done in the real world? I do like the effect...
5
by: lgbjr | last post by:
Hello All, I have several Pictureboxes (linked to an AccessDB) on a VB.NET form. I would like to use a context menu to allow the user to open the picture in their default picture viewer or...
1
by: goRide | last post by:
Hi, I'm looking of a way (preferred - a ready class or dll) to customize the context menu. many application has more controls inside the context menu (like textbox, sliders, checkbox, panel...
2
by: Phoe6 | last post by:
Hi all, I have this Code Context feature under Options in the IDLE. How should I use it? Are there folks here who use it regularly and find it useful. Please guide me. Thanks! Senthil
2
by: MCM | last post by:
I'm working on a plotting control. The plotting control will have a context menu with basic commands for "scaling", "zooming", etc. Is there a way that, from the parent form, I can add more...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.