Tagged Questions

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

26
votes
5answers
16k views

Select TreeView Node on right click before displaying ContextMenu

I whould like to select a WPF TreeView Node on right click, right before the ContextMenu displayed. For WinForms I could use code like this ...
20
votes
3answers
2k views

How do I remove msysgit's right click menu options?

This isn't the best programming question but lets face it, the server fault guys aren't well versed in git, so I think its more towards this audience. Do I have to write a script to uninstall them? ...
16
votes
3answers
6k views

Configuring jstree right-click contextmenu for different node types

I've seen an example somewhere online showing how to customise the appearance of jstree's right-click context menu (using contextmenu plugin). For example, allow my users to delete "documents" but ...
15
votes
5answers
7k views

ElementName Binding from MenuItem in ContextMenu

Has anybody else noticed that Bindings with ElementName do not resolve correctly for MenuItem objects that are contained within ContextMenu objects? Check out this sample: <Window ...
14
votes
6answers
17k views

Detecting which selected item (in a ListView) spawned the ContextMenu (Android)

I have a ListView that will allow the user to long-press an item to get a context menu. The problem I'm having is in determining which ListItem they long-pressed. I've tried doing this: ...
12
votes
1answer
243 views

How do you copy and paste from a THtmlViewer object?

At the moment I have the following hack: procedure TForm1.HTMLViewer1KeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); begin if (Key = Word('C')) and (Shift = [ssCtrl]) then ...
12
votes
3answers
806 views

Context menu disappears with Word automation

When I am editing a Word document in an OleContainer (inplace) and I switch to another Word document and then I switch back, I cannot use my rightmouse button anymore. The context menu will not show ...
10
votes
2answers
10k views

WPF: Displaying a Context Menu for a GridView's Items

I have the following GridView: <ListView Name="TrackListView" ItemContainerStyle="{StaticResource itemstyle}"> <ListView.View> <GridView> <GridViewColumn ...
9
votes
1answer
3k views

How to add a custom right-click menu to a webpage?

I want to add a custom right-click menu to my web application. Can this be done without using any pre-built libraries? If so, where can I find a good tutorial that shows how to display a simple custom ...
9
votes
2answers
7k views

Create a jQueryUI 1.8 Button menu

Now that jQueryUI 1.8 is out, I was browsing through the updates and came across the new Button widget, and in particular one of the demos with the SplitButton with a dropdown. This demo seems to ...
9
votes
6answers
10k views

WPF Context menu doesn't bind to right databound item

I have a problem when binding a command in a context menu on a usercontrol that is on a tab page. The first time I use the menu (right-click on the tab) it works great, but if I switch tab the command ...
8
votes
3answers
292 views

How can I trigger right click if you left click on some html element using jQuery?

Basically, I want to open a context menu on left click itself. Is there anyway to do this using jQuery?
8
votes
4answers
9k views

right click context menu for datagrid

I have a datagrid in a .NET winform app. I would like to rightclick on a row and have a menu pop up. Then i would like to select things such as copy, validate, etc How do i make A) a menu pop up B) ...
8
votes
4answers
5k views

How to show a Context Menu when you right click a Menu Item

I am porting an MFC application to .NET WinForms. In the MFC application, you can right click on a menu or on a context menu item and we show another context menu with diagnostic and configuration ...
7
votes
7answers
3k views

Do any browsers support HTML5's context menu?

Do any browsers support the HTML5 context menu attribute?
7
votes
2answers
239 views

FLOSS that implements badging and contextual menu in Snow Leopard's Finder

Apparently with Snow Leopard, due to rewrite of Finder in Cocoa and removal of Contextual Menu Plugins, it is no longer trivial to do either badging nor contextual menus, however Dropbox seems to both ...
7
votes
2answers
6k views

How to add Silverlight 4 ContextMenu to DataGrid row using XAML?

Silverlight 4 has a new ContextMenu control in the latest toolkit. I can't find any examples anywhere on how to reliably use this ContextMenu on a DataGrid row. Theres a tonne of context menus out ...
7
votes
1answer
3k views

Change context menu in WPF TreeView for data

Is there a way to specify in a TreeView's HierarchicalDataTemplate to use a different ContextMenu depending on a property on the data an item is bound to? For instance, display one ContextMenu if ...
7
votes
2answers
6k views

WPF, UserControl, and Commands? Oh my!

(This question is related to another one, but different enough that I think it warrants placement here.) Here's a (heavily snipped) Window: <Window x:Class="Gmd.TimeTracker2.TimeTrackerMainForm" ...
7
votes
5answers
14k views

Right-click context menu for Java JTree?

I'm trying to implement pop-up menus in Java JTree. I've sub-classed DefaultTreeCellRenderer (to change node appearance) and DefaultTreeCellEditor (to create Components to attach event listeners to, ...
7
votes
4answers
4k views

How do you show the Windows Explorer context menu from a C# application?

I have a file listing in my application and I would like to allow people to right-click on an item and show the Windows Explorer context menu. I'm assuming I would need to use the IContextMenu ...
6
votes
1answer
529 views

Extending the Visual Studio 2010 editor by adding a context menu item to manipulate selected text

I'd like to create an extension to Visual Studio that will allow someone to select any text in an editor, right-click to get a context menu, and then perform some action on the text by clicking on my ...
6
votes
2answers
239 views

Visual Studio AddIn: How do I Add Item Specific Commands to the Solution Explorer Context Menu

I've spent about 3 days now trying to get this working but to no avail. I'm fairly new to VS.NET extensibility and I find it hard to debug my problems. I've already tried the code here presented: ...
6
votes
4answers
898 views

How to handle onContextItemSelected in a multi fragment activity

I'm currently try to adapt my application to use the "Compatibility Libraries for Android v4" to provide the benefits of the usage of fragments even to Android 1.6 users. So far this was possible ...
6
votes
3answers
10k views

How i can create context menu for extjs grid

I can create context menu for tree and attach to 'contextmenu' event. Code: contextMenu = new Ext.menu.Menu({ items: [{ text: 'Edit', iconCls: 'edit', hadler: edit },...] }) ...
6
votes
4answers
2k views

Silverlight Datagrid select on right click

Is there a way for a right click event to select a row in toolkit datagrid? I'm using toolkit context menu which works nicely, but the problem is, only left click is able to select rows, and I need ...
6
votes
3answers
9k views

C# datagridview right click select row and show menu to delete it

I have few columns in my DataGridView, and there is data in my rows, I saw few solutions in here, but I can not combine them! simply a way to right-click on a row, it will select the whole row and ...
6
votes
2answers
917 views

VS2010 add-in custom menu item in files of Solution Explorer

Hey guys, I need to create a custom menu item for Visual Studio 2010 Add-in in C#, but I have had no luck in finding a solution for my needs. I am aware that there was a similar post (Visual Studio ...
6
votes
1answer
5k views

WPF ContextMenu with ItemsSource - how to bind to Command in each item? [closed]

Possible Duplicate: Specify Command for MenuItem in a DataTemplate I have a collection of objects (viewmodels) that represent menu items. Each of them have a command that I would like to ...
6
votes
3answers
6k views

C# - Detecting if the SHIFT key is held when opening a context menu

In my C# application I want to display a context menu, but I want to add special options to the menu if the SHIFT key is being held down when the context menu is opened. I'm currently using the ...
6
votes
4answers
8k views

How can I add a context menu to a ListBoxItem?

I have a ListBox and I want to add a context menu to each item in the list. I've seen the "solution" to have the right click select an item and suppress the context menu if on white space, but this ...
5
votes
1answer
179 views

VS 2008 Addin -> How to add a submenu at a specific position in a context menu?

I'm working on an addin for Visual Studio 2008 and want to add a permanent submenu to contain my context-sensitive commands to several context menus (such as "Project", "Item", ...). I have had no ...
5
votes
1answer
457 views

Adding DataGridView columns programmatically

I have a DataGridView filled with productinformation. The datagridview has totally 50 columns but the users don't always need all the columns, I want to help them to be able to choose which columns to ...
5
votes
1answer
177 views

Telling a ContextMenu to place itself relatively to its control, not the cursor

I have a button with a default command and a context menu for other available commands: <Button Content="Do this" Height="23" Width="75" Command="local:MyCommands.ThisCommand"> ...
5
votes
1answer
946 views

edit with idle (python gui) context menu windows-7

under win XP I have a context menu entry "edit with IDLE" for python source files. I tried to make this work under windows-7 (32 bit) as well by setting the corresponding registry entries under ...
5
votes
1answer
397 views

Richfaces: Link-like text with ContextMenu

I want to render using Richfaces a context menu on left click on a link-appearing text (blue text, and underline and cursor onmouseover). So, imagine a link which when clicked shows a context menu. ...
5
votes
2answers
362 views

jQuery context menu - finding what element triggered it off

I am trying to write a context menu option for a page of mine. Basically a div is right-clicked, an options menu pops up which can be used to perform tasks. My problem is trying to find the original ...
5
votes
2answers
230 views

How to re-enable the context menu in this case?

document.addEventListener('contextmenu', function (e) { e.preventDefault() e.stopPropagation() e.returnValue = false e.cancleBubble = true }) No way? Edit: document.oncontextmenu = ...
5
votes
5answers
570 views

“Build” item in Windows Explorer's context menu of a VS solution file?

I wonder why this is not integrated by default. I'd like to have an item in Windows Explorer's file context menu of a VS solution file to build it. Is there a tool for this? Or do I have to create ...
5
votes
3answers
3k views

WPF ViewModel Commands CanExecute issue

I'm having some difficulty with Context Menu commands on my View Model. I'm implementing the ICommand interface for each command within the View Model, then creating a ContextMenu within the ...
5
votes
2answers
688 views

Showing windows (file/directory) context menu in c# winforms application

I'm trying to display standard file/directory context menu in WinForms application - I'd like to enable the user to do things with files in my application as he could in Explorer. There should be ...
5
votes
3answers
2k views

Unable to set System.Windows.Controls.MenuItem.Icon thru a setter

Hi I am trying to have a MenuItem.Icon set thru a style setter: <Style x:Key="MenuItem_Delete" TargetType="MenuItem" BasedOn="{StaticResource {x:Type MenuItem}}"> <Setter ...
5
votes
2answers
6k views

Context Menu for XAML Treeviewitem

In XAML, how do you define a context menu for treeviewitems that are distinguished by different attributes?
5
votes
1answer
474 views

How to set ContextMenu of a bound item?

I am trying to achieve the following: <Style TargetType="ListBoxItem"> <Setter Property="ContextMenu"> <Setter.Value> <ContextMenu> ...
5
votes
1answer
861 views

How to programmatically choose a context menu item in another app?

The target app is written in Delphi (win32 not .NET) and is closed-source. The action I want to invoke is called Copy, but there is no obvious keyboard shortcut. (Ctrl+Insert does the wrong thing and ...
5
votes
2answers
2k views

How can I add a context menu to the Windows Explorer for a Java application?

How would one go about adding a submenu item to the windows explorer context menu (like for example 7-Zip does) for a Java application?
4
votes
1answer
55 views

How can I do a context menu with logo on the left side

I've looking for 4 hours how can I do a context menu with logo. I mean something which looks like daemon tools context menu. For these who dont know how it looks like: Is there any option to do it ...
4
votes
1answer
232 views

How to automate right-click on icon in system tray using C#

I want to write automation framework for .NET application. To start application user should right- click on icon in system tray and choose option from context menu. I have done some resaerch and found ...
4
votes
1answer
156 views

Why were all the C# Shell Extension Examples removed from the All-In-One code framework in April?

The samples and the code were described here: http://blogs.msdn.com/b/codefx/archive/2010/09/14/writing-windows-shell-extension-with-net-framework-4-c-vb-net-part-1.aspx And the framework itself is ...
4
votes
3answers
147 views

C# How to add my program to context menu?

I have a c# executable file (created from a windows form application) and I would like to be able to add this file to the context menu. Furthermore, I should point out that I need to be able to add it ...

1 2 3 4 5 22