A context menu is a menu in a graphical user interface that appears upon user interaction, such as a right mouse click or middle click mouse operation.

learn more… | top users | synonyms

3
votes
0answers
419 views

Writing VS2010 Extension

I'd like to create an extension for Visual Studio 2010. The functionalities I need are these: Add a context menu item for Project (when user right clicks project name in his solution, he'll get my ...
2
votes
0answers
83 views

Get context of PopupMenu like ContextMenu

So my ExpandableListView has group rows that are defined like : group_row.xml <?xml version="1.0" encoding="utf-8"?> <RelativeLayout ...
2
votes
0answers
72 views

Dynamically create ContextMenu in Silverlight 5

I have just started to use Silverlight this few days. Currently I have generated some panel dynamically in a canvas. Each panel will have a shared MouseLeftButtonUp event which will display a ...
2
votes
0answers
70 views

ContextMenu won't go away after selection

I have the following code that adds a context menu to a textbox on the UI. THe user is suppposed to be able to bring up the context menu and select a new units to be used. So the method CurrentUnits ...
2
votes
0answers
55 views

Android Development: Nested Context Menus?

Is it possible to have nested context menus? I am working on an app which needs to provide the users with various functionality, and after much thought I came to the conclusion that using a context ...
2
votes
0answers
551 views

Implementing a dynamic ContextMenu for a Primefaces multi-select Datatable

I have a paged PrimeFaces Datatable with a context menu, and i wish to implement multi-select, where the menu items in the context menu will depend on the number of items selected, as some actions ...
2
votes
0answers
18 views

putting image and text in a “scrollable box” for use with contextmenu

I am junior i C# coding, learned things in console output. Now i am trying to understand the forms better and trying to make an app in windows form. My goal is to do a foreach( do enumration) loop ...
2
votes
0answers
189 views

It is possible to create “new MouseButtonEventArgs” in Silverlight?

I'm newbie in Silverlight and I need to activate MouseRightButtonDown(object sender, MouseButtonEventArgs e) from an another event handler in my application. I have found, that in WPF it is possible ...
2
votes
0answers
139 views

ContextMenu difference in Focus behaviour from Menu

I would like a context menu to behave in the same way as a main menu with regards focus. For example if keyboard focus is in a listbox and I hit F10 to take me to the main menu and navigate through ...
2
votes
0answers
976 views

How to display ActionBarSherlock menu items on the top and bottom bar?

I am currently trying to implement "action mode" with ActionBar Sherlock. When the "action mode" launches, I would like to have some of the menu items (2 of them) displayed on the top action bar and ...
2
votes
0answers
178 views

White background on windows explorer context menu Icon

I have a COM shell extension that adds an item to the Windows Explorer context menu and use a BMP image with a transparent background as the icon. To set the image I use SetMenuItemBitmaps like so: ...
2
votes
0answers
109 views

Selenium: Chrome and contextMenu item pressing

I want to test pasting from context menu in different browsers. I use new Actions(driver).contextClick(element).perform(); for calling the context menu and it's okay for Firefox and Chrome. In ...
2
votes
0answers
143 views

How to make context menu item to many files?

I make context menu item for images(for example), it should open my console application, using target file as string argument. When I use it for many files it opens many application copies, and for ...
2
votes
0answers
198 views

Disable context menu in GWT RichTextArea

I'm developing a kind of WYSIWYG editor in GWT. In order to show my own context menu, I have to disable the default browser's menu. I was doing this by simply adding an attribute to the RichTextArea ...
2
votes
0answers
424 views

How to open a ContextMenu on RelativeLayout click, using custom Adapter

I am attempting to recreate the ListView seen in Android 4.0 Music player, which allows access to a ContextMenu through clicking an area on the right of the row: To do this I am creating complex ...
2
votes
0answers
221 views

Programmatically adding "Open Recent' menu to context popup menu

I have a non-document Cocoa application with a menubar icon and status menu. I've added an "Open Recent" menu to the status menu in Interface Builder. Populating the menu works just fine: ...
2
votes
0answers
81 views

Contribute to context menu of annotation bar in eclipse

How do I add/contribute to a context menu on annotation bar (vertical strip) on left side of text editor? Thanks.
2
votes
0answers
317 views

How to add a new context menu in Adobe Reader(PDF) using C#

I'm developing an application where i need to create a new context menu item in pdf viewer (Adobe Reader). Can anyone please let me know how to create it using C#? Thanks in advance.
2
votes
0answers
413 views

InstallShield 2009: Remove a dll (being used by explorer.exe for context menu) during uninstall without any warning message

Install Shield Premier 2009: Basic MSI Project I have a dll that is supposed to be removed during uninstall. But this dll is being used by explorer.exe, it is used for generating windows explorer ...
2
votes
0answers
936 views

WPF ContextMenu with bound items: Items.Count == 0 in ContextMenuOpening event

I have a ContextMenu with the ItemsSource bound to the selected item of a list view, like this: <ContextMenu ItemsSource="{Binding Path=PlacementTarget.SelectedItem, ...
1
vote
0answers
36 views

Android context menu prompt only on second click

I have a serious problem in my Android apps. I have a list view which lets say 1 to 10. Each of them can see their details through clicking it At the same time, I have context menu on each list ...
1
vote
0answers
138 views

context menu shell extension doesn't appear in explorer

I have the same problem as described here "Shell extension doesn't work in Windows-Explorer but works in other programs?", but it doesn't works only in explorer. OS Windows 7 x64. Dll was compiled ...
1
vote
0answers
34 views

Letting through right click (only), works on image but not iframe

Trying to figure out how to get this script working with vimeo embeds. Seems to work alright with images (tried in FF, Chrome and Safari in OS X). However the vimeo embed just won't bring up the ...
1
vote
0answers
52 views

Display 'open with' context menu in own context menu

I've written a namespace extension (c++). What I want to do now is to copy the windows explorers 'open with' menu. I've implemented my context menu using IContextMenu, IContextMenu2 and IContextMenu3. ...
1
vote
0answers
46 views

Error rotating contextmenu

I've been getting this error throughout my program when I open a context menu then rotate the screen. 03-19 16:09:25.627: E/InputQueue-JNI(11610): channel '41c6ffc0 ...
1
vote
0answers
163 views

jQuery Create dynamic contextmenu loaded using Ajax

I'm using the below context menu plugin for jQuery 1.8.11.js and using the "build" callback to dynamically create the menu on every right click. ...
1
vote
0answers
330 views

Dynamic Context Menu on WPF TreeView

I have an application with a WPF treeview with a node hierarchy. I have to display a context menu for the one or more selected nodes. When one or more nodes are selected, a collection in my viewmodel ...
1
vote
0answers
58 views

Keyup event not registered after contextmenu event

I am trying out this following code. It is supposed to change the sh attribute of the input to 1 whenever the shift key is pressed, and revert back to 0 when released <!DOCTYPE html> ...
1
vote
0answers
74 views

Add custom context menu for shapes in Excel with C#

I'm trying to add some extra to the context menu for shapes but it seems not to be working. Here is the code I use: CommandBar MyShapeContext = this.Application.CommandBars["Shapes"]; ...
1
vote
0answers
95 views

Windows Right Click Context Menu + Sub Menu

How to create sub menus entries in the Windows Context Menu. I am able to create the Main menu, but I want to associate some sub menus too. Moreover how to associate an Icon to the menu item.
1
vote
0answers
53 views

How to remove sound when context menu is opened manually?

When I manually show a context menu (code below) - system plays a "ding" sound. But if I click a "context menu" key on keyboard - menu popups without any sound. How to remove sound when I open it ...
1
vote
0answers
73 views

Create custom layout for contextmenu

Can you inflate a custom xml layout for the body of a context menu? Right now I have a context menu working on longpress but I want to make it look better than just a list of text options. I'm using ...
1
vote
0answers
157 views

How can I use $().bind and mouseup to remove contextmenu?

I need to use the $().bind method. I do not wish to use another plugin. I simply want to add both a left click and a right click function. Here is my function handler. I also must disable the context ...
1
vote
0answers
138 views

WPF Binding SelectedItem from ContextMenu to Button.Content

i have a ContextMenu on a Button in XAML. The ContextMenu Items are loaded by the ItemsSource property. Now I want to set the text of the button with the SelectedItem.Text of the ContextMenu. Is there ...
1
vote
0answers
141 views

adding a DropDown Menu(list navigation) and Textview together in the Main action bar at the top.

I need to align a spinner(list navigation in action bar) and a tab layout , at the top of the action bar like side by side. and at the bottom of the screen i need four more action items they are ...
1
vote
0answers
94 views

How to add lightbox to context menu within a Chrome Extension

I'm building a Chrome extension based on Context Menu. When the user either selects a link or highlight a text the extension will appear ("contexts":["selection","link"]...). As soon as the user ...
1
vote
0answers
94 views

WPF: How to implement Blend's Dark theme for context menu

I have added this xaml in my App.xaml: <Style TargetType="{x:Type ContextMenu}"> <Setter Property="Background" Value="{StaticResource ShadeBrush}" /> <Setter ...
1
vote
0answers
49 views

Is it posible to have Jstree contextMenu with Hyperlink

Is it possible to have a Mvc4 Link (http://localhost:59446/TierManagement/CreateTier) in the contextmenu of jsTree, which will take me to new view (CreateTier page) Thanks in Advance
1
vote
0answers
165 views

How to bind jVectorMap omMarkerClick to a context menu

I am trying to bind a context menu to each marker created in a jVectorMap. I would like a menu to pop up whenever the user clicks a marker on the map. I am using this context menu: ...
1
vote
0answers
60 views

Show places on map upon selecting context menu options

I'm making a simple app using google maps, I have a context menu in the middle of the map and I want to show places, upon selecting one of the context menu options (the menu items have listeners which ...
1
vote
0answers
68 views

How to disable context menu option when multiple folders are selected?

This is my first question, it is bugging me for the past few weeks so thought of asking it here. I have added a context menu option for directories by adding the below registry key. ...
1
vote
0answers
64 views

do other tasks when a context menu is shown (hence WM_ENTERIDLE is sent)

In firefox, after users right click at a tab item and the context menu is shown, if he moves the mouse to another tab item, the "another" tab item will be highlighted. But in IE, the "another" tab ...
1
vote
0answers
97 views

Add “Copy Filename” to tab context menu in Visual Studio

Currently there is "Copy Full Path" in the tab context menu. I would like to have a "Copy Filename" item in it. I looked at Tools -> Customize -> Commands -> Context menu -> Other Context Menus | ...
1
vote
0answers
195 views

Windows 7: How to add filetype-specific context menu items, eg, call different apps to ‘Open’ or ‘Edit’

In Windows XP I could easily create context menu entries, e.g., for type .jpg I could “Open” it with irfanview.exe, or “Edit” it with gimp.exe. That was done with the Explorer > Tools menu > Folder ...
1
vote
0answers
62 views

Avoid blue flash behavior when reusing submenu of main menu as context menu

I have the following problem: In an Cocoa app, a submenu is defined and attached in the main menu. Now I need the exact same submenu as a context menu for a NSView. Now, my goal is to avoid creating ...
1
vote
0answers
218 views

IE8 doesnt show open in new tab or window in context menu for anchor

Well, I have a menu that has a structure similar to <ul id="principal_menu"> <li><a href="example.com"> menu 1</a> </li> <li><a href="example.com"> ...
1
vote
0answers
118 views

Android WebView standard ContextMenu

I'd like to have the context menu for the WebView content, like in the standard browser we have (see the images below). Tried to explicitly enable the webView longClick, no luck. So the question is ...
1
vote
0answers
104 views

WinForms context menu event source

I am working on a word addin to aid users in generating report templates. One of the functions is to add Label controls to the document. Unwanted controls cannot be removed from the document in a ...
1
vote
0answers
942 views

WPF NotifyIcon - ContextMenu Position

Im using the WPF NotifyIcon from CodePlex. It works fine but what I noticed is that when compiling with .NET 4.0 the ContextMenu is always positioned above the taskbar, it's fine with .NET 3.5: .NET ...
1
vote
0answers
163 views

Android : ContextMenu and LongClick issue

I've got a listview filled with personnal views. I want to create a menu when I make a long click on an item. Therefore I have this in onCreate : myListView.setOnCreateContextMenuListener(new ...

1 2 3 4 5 11