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.
0
votes
0answers
12 views
Adding items to contextmenu of cdockablepane MFC
I plan to add copy and paste to the property window (CDockablePane) of a default MFC project in Visual Studio. I would like to add copy and paste to the built in context menu of CDockablePane. However ...
1
vote
1answer
44 views
Android ListFragment: how to have both onListItemClick and onContextItemSelected?
I'm implementing a ListActivity and ListFragment and would like to allow the user to use short taps and long taps - short being to edit/show the details of the item and long tap to bring up a context ...
0
votes
1answer
29 views
Reading registry
I have written the following code:
RegistryKey _Key = Registry.ClassesRoot.OpenSubKey("SystemFileAssociations", true);
foreach (String s in names)
{
...
0
votes
1answer
77 views
Edit right-click context menus in Windows 7 [closed]
I want to add a custom option using registry called My Button when I right click an MP3 file
which will launch
C:\Program Files\MyApp\app.exe %1
The
following answer
works great for Windows XP, but ...
0
votes
0answers
76 views
Context menu on item click and on long item click
Maybe someone knows how to call two different context menus on simple lisview click and on long click? Below is my code with two listeners:
ArrayAdapter<String> adap = new ...
0
votes
0answers
29 views
How do I add py files to the “New” context menu?
I just looked up/found out about going into the registry to add "ShellNew ==> NullFile" to create new items. but this doesn't seem to work with .py (Python) files. What else do I need to do to get ...
0
votes
1answer
129 views
jquery contextmenu add icon
For my mvc.net 3 application, I need to add a icon image in a contextmenu. I have this function to create the context menu in jquery:
function CreateContextMenu {
c = chart;
...
0
votes
0answers
102 views
Issue with ListView ContextMenu on a tabbed activity
I'm making a small app I need and I have an issue with the context menu.
I've created the main activity with the wizard (the one that eclipse shows when you create a new proyect) as a tabbed ...
0
votes
1answer
292 views
Sequence Diagram context menu absent in Visual Studio 2012 but was there in VS2010
I used to be able to generate sequence diagrams in Visual Studio 2010 by right-clicking within a function and selecting the appropriate menu option.
I just installed Visual Studio Premium 2012 ...
0
votes
1answer
134 views
Any control like context menu in DevExpress?
I'm using controls from DevExpress to develop desktop application in VB.NET. Now, I want to add context menu also from DevExpress. But I cannot find such control in toolbox. Is it missing only in my ...
0
votes
2answers
598 views
easiest way to fix latest notepad++ missing context-menu
I reinstalled my Windows.
I installed latest notepad++ and I found that "Edit with Notepad++" context-menu item is missing. I've googled it and I found some thread about it here: ...
1
vote
1answer
256 views
Android EditText context menu style
I use my own style in my app.
<style name="My" parent="android:Theme">
<item name="android:textColor">?android:attr/textColorPrimary</item>
<item ...
0
votes
1answer
162 views
invoke primefaces context menu from java script
i have a svg on my webpage. The elements when right clicked on should display a context menu with data fetched from the database.
The elements are written in such a way that the right click event ...
0
votes
0answers
269 views
Google Maps API v3 - ContextMenu inside infowindow
I'm using ContextMenu.js to create a context menu for a few options on right-clicking the map. The plugin is here:
http://googlemapsmania.blogspot.com/2012/04/create-google-maps-context-menu.html
And ...
0
votes
1answer
64 views
How to deactivate an item of the context-menu (Mozilla addon-kit)
I would like to deactivate all top-level context-menu-items of my addon under certain circumstances (for example when the addon has been disabled by the user).
Somehow I can't figure out how this is ...
1
vote
0answers
164 views
start in-cell-editing a row in primefaces datatable using context menu
I'd like to trigger in-cell-editing in a dataTable from a context menu edit command. I'm using primesfaces 3.4.1. I only found examples for editing using p:column/p:rowEditor (which is working fine). ...
3
votes
0answers
94 views
Communication between page-mod and context-menu in Firefox Addon SDK
Via the context-menu module I detect over which DOM element the user clicked my custom context menu item "Mark":
var menu = require("context-menu").Item({
label: "Mark",
contentScriptFile: ...
0
votes
2answers
167 views
parse Main Args[] string from windows context menu
I used the following code to implement the right clicked file that opened by my application.
My aim is to get that file's path into my program.
I use:
public static string path = "";
static void ...
1
vote
0answers
119 views
Fix context menu on display area of Page
I am using this context menu. It works perfect with an odd behavior.
The top-left corner of the context menu always present at the position of mouse pointer.
Hence when user right-click at the almost ...
0
votes
1answer
151 views
How to set size of context menu header icon?
How can I set the size of the icon in the header of a context menu?
The icon is set via ContextMenu.setHeaderIcon(int iconRes).
2
votes
1answer
915 views
Python tkinter app adding a right click context menu?
I have a python-tkinter gui app that I've been trying to find some way to add in some functionality. I was hoping there would be a way to right-click on an item in the app's listbox area and bring up ...
0
votes
2answers
238 views
c# simulate click in context menu
So my question is:
I got an Windows Forms application in C# and an webBrowser control in this application. When you for example right-click on a video in youtube, a context menu shows up. Now, is it ...
0
votes
1answer
282 views
VB Net: Enable menu/contextmenu items based on security level
I have a project with several items that are enabled/disabled based on security level. I am trying to iterate through all of the controls on the form to get their names and generate a list. I can ...
1
vote
1answer
513 views
android listview context menu
I want to put a context menu on a listview. This seems very simple to do but I am getting some interesting behavior. The listview has two fields, a textview and an editText. The long press opens up ...
0
votes
0answers
99 views
TFS Source Control Explorer contextual menu customization
Can somebody please help me with adding my own items to the contextual menu in the TFS source control explorer? I have seen several "answers" to this question in the forums. None of them are very ...
2
votes
1answer
313 views
Delphi shell context-menu, how to draw icon
Can I get some code showing how to draw a bitmap/icon on the right-click context menu?
I have working code already for a DLL for the context menu, but it's just text. Example here: ...
0
votes
1answer
204 views
ListView and ContextMenu
Is it possible to implements working with context menu inside ListView class? It is no onContextItemSelected() method here. I don't want write a code with context menu inside Activity class.
Thank ...
0
votes
0answers
90 views
Having Conflict with tablednd and contexMenu
i am having a table availbele on page load.
i want to have a contextMenu for the rows and also sorting the rows in side the table
For sorting i am using tablednd plugin
the problem is that ...
0
votes
0answers
197 views
Right-click copy from a SELECT MULTIPLE box
I'm creating a .jsp file that has this piece of html:
<select multiple="multiple" id="selectableOptions">
<option value="1">A</option>
<option ...
6
votes
1answer
353 views
What does the Text DFM context menu option mean?
When you right click on a Delphi form you get the popup context menu. The bottom option is Text DFM. This option can either be checked or not checked. What does it mean when this option is checked or ...
0
votes
3answers
135 views
I want to change the application state and then reload the activity to reflect the change
HI i change the app state and then i want to reload the activity to reflect the change im trying to use notifyDataSetChanged, but its nor working...basically when i select the option "remove", the ...
1
vote
4answers
612 views
Typeface for ContextMenu Item in android
How can i add/change the typeface for ContextMenu Item?
Please guide me.
@Override
public void onCreateContextMenu(ContextMenu menu, View v,ContextMenuInfo menuInfo) {
...
0
votes
1answer
111 views
Need to add an option like “add word to dictionary” in longpress context menu
Planned to implement a global context menu for text(Editext, Textview).
A new option should be there to add the selected word to my wordcollector kind of application.
How to add the above option to ...
1
vote
1answer
331 views
I can't make windows phone's context menu appear middle of screen
I tried to show context menu by set field IsOpen, it's shown but its position is at top of screen, I wanna set it to show at middle, how to do this ?
0
votes
1answer
169 views
How to add or remove a folder to PATH environment variable from Windows context menu [closed]
Tired of having to do it manually each time I needed to, I wrote some registry entries to add context menu entries for AddToPath and RemoveFromPath to folders, utilizing a free app called pathed.exe . ...
0
votes
1answer
181 views
Is it possible to detect a left-click on a right-click browser context menu?
It's a fairly common pattern to have a dialog, a menu, or some other HTML element with a link inside it pop up in response to a click. For example, if you click the orange question mark above the ...
1
vote
1answer
406 views
How to get/retrieve context menu value after right click with Javascript?
I can't find a related question to give me an idea about how to do this.
I've seen some topics about how to know if the right-click button was clicked but I'd like to be able to capture the value ...
1
vote
1answer
2k views
Get Text From list view item
I am trying to get text of list view item. And I am making the header of Context menu is clicked text of item.
This is my view
<LinearLayout
android:id="@+id/innerlayout"
...
2
votes
2answers
1k views
onCreateContextMenu isn't being called
It looks like the onCreateContextMenu insn't being called at all. In my onCreate for my ListActivity I have:
list = getListView();
registerForContextMenu(list);
(I know it's redundant, and I've ...
2
votes
1answer
331 views
contextmenu in webbrowser Windows Phone 7
i successfully added a contextmenu to my webbrowser with this javascript code:
public void AttachContextMenu()
{
try
{
if ((App.Current as ...
1
vote
1answer
104 views
How do I get information about the file/folder that has been right clicked BEFORE my OSX Service is displayed?
I am contemplating the creation of an OSX System Service as outlined here: http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/SysServices/introduction.html My understanding is that ...
1
vote
1answer
436 views
Is there a way to modify context menu in iOS webView using Appcelerator Titanium?
I am using Appcelerator Titanium to develop an iOS app.
I have searched the web for quite a long time but still can't figure out how to add an item to the webView's context menu shown when tap and ...
1
vote
1answer
257 views
How to get the file item right-clicked in Finder on OSX
I'm writing a plugin via mach_inject to add an item to Finder context menu. I have successfully add it by hooking NSMenu. But now i need to get the item that is right-clicked.
Someone said we could ...
1
vote
1answer
272 views
How to control order of extension item in Chrome context menu
Is there a way to control the order that my Chrome extension's context menu item appears in?
It probably can't appear above any of the Chrome's built in context menu items (like "Open link in new ...
5
votes
2answers
805 views
Delphi add menu item in Windows Explorer right click
How to add a right click context menu in Windows Explorer for all kind of file extension?
From what I read on the internet, I read a way to do this for certain file extension.
My question, how can ...
0
votes
1answer
701 views
Handling onclick event of Contextmenu Menu Item on windows form
I have Windows Form App. I have added Context Menu that appear when you right mouse click over the listbox. But some reason I could not figure out how to catch onClick event for ContextMenu- ...
0
votes
1answer
359 views
c# ContextMenu Handler
I've tried to use this code to develop my own context menu handler for my app: http://www.codeproject.com/KB/shell/ratingcolumn.aspx
However nothing happened. Then I tried just compiling that code, ...
2
votes
2answers
737 views
Adding a context menu to the tab of a TPageControl
I wish to add a context menu to the (just the) tab of a TPageControl as distinct from the tab area (e.g like Delphi does to offer file/page options). I know I can do this with TRzPageControl but how ...
2
votes
2answers
506 views
Right click on a menu item and show options
I have menu ServerList, I am adding the menuItems dynamically using C# code. It reads the servers list from file and populate the menu items. I have added the right click options for each server. Edit ...
0
votes
1answer
273 views
How to create ContextMenu with no border in C#?
How to create ContextMenu with no border in C# (winform)?
The question is quite straight forward, I just only want to remove the border of ContextMenu.
The ContextMenu here is ...




