0
votes
0answers
31 views

Contextual menu strange behaviour within a modeless dialog?

We develop in C++/CLI with VS2012. We have a modeless dialog where a contextual menu (ContextMenuStrip, right click...) is used. When we built the app with VS2005, everything was fine and the ...
0
votes
0answers
13 views

How Do I Place An Image On A Legacy System.Windows.Forms.MenuItem?

Before you think this is a duplicate. This question has nothing to do with a ContextMenuStrip. This question is regarding the legacy ContextMenu (.NET 1.1). I am using the LEGACY ContextMenu ...
3
votes
1answer
176 views

dynamic context menus

I'm trying to come up with a solution to create dynamic context menus that can be generated at run time. I have implemented a IGuiCommand interface that implements something similar to the normal ...
1
vote
0answers
13 views

How Can I Place An Image On A System.Windows.Forms.MenuItem? [duplicate]

I am using the LEGACY ContextMenu because I like the look of it in Windows 7. Does anyone know how I can place an image (without owner drawing) on a MenuItem? Or is this a limitation? EDIT: This is ...
0
votes
1answer
73 views

Tip / idea how can I get a generic context menu?

I want to develop a generic contextmenu in wpf with mvvm. I would like to display it in each viewModel that have a listview with the style: ItemContainerStyle="{DynamicResource ...
2
votes
2answers
94 views

WPF: When Alt key is pressed, my ContextMenu won't open

In my WPF app, when a ContextMenu is opening, I want to tweak its menu items depending on whether or not the Alt key is pressed. I've got the logic working. XAML: <my:Control ...
0
votes
0answers
205 views

Source of context menu click in WPF TreeView

When clicking in a context menu for a TreeView item, I can't find the source TreeViewItem (or better, the source Project[Group], which is the actual item in the TreeView through the databinding). The ...
0
votes
1answer
29 views

Duplicate HtmlElementEventHandler events being triggered

regarding this article"HtmlElementEventHandler Delegate" http://msdn.microsoft.com/en-us/library/system.windows.forms.htmlelementeventhandler.aspx the context menu event handler fires more than once. ...
1
vote
2answers
187 views

Unhide Datagrid column in WPF

I am developing a WPF application.There is a datagrid in my Application i have created a context menu to hide and unhide column header of the datagrid while assigning the itemsource of datagrid to an ...
0
votes
1answer
36 views

How to know when the context menu of a control has been shown

I have a control that draws a diagram, and I show a tooltip when the user is hover an object. I have also implemented the functionality to show a context menu when you right click the object. The ...
0
votes
1answer
144 views

Adding submenu to a particular menuitem of contextmenu strip

I have a contextmenu strip in which menu items will be populated based on certain condition. Ex: for the condition1: myContextMenuStrip.Items.Clear(); myContextMenuStrip.Items.Add("Item title", ...
0
votes
0answers
24 views

Should the parent control 'own' the context menu for the children?

Gday. In .net, specifically vb.net. Suppose there is a control T1 that inherits from Panel. Suppose there is a control T2 that is placed on an instance of T1. T2s will only ever be contained within ...
0
votes
2answers
829 views

Check which submenu item was clicked in context menu strip

There is a ContextMenuStrip in a grid control. I have named it as GridContextMenu. The GridContextMenu is populated with 4 - 5 items using the following code : gridcontextMenu.Items.Add(new ...
0
votes
1answer
316 views

Get Contextmenu's Parent Control. WPF app

I have a ComboBox control inside Context menu for some Label Control that I have added in Code behind in wpf application. There are many Labels on the page that have Contextmenu. Basically it is like ...
3
votes
2answers
167 views

How do you stop a textbox showing the default context menu?

I've noticed something wierd with the WinForm TextBox's Context Menu. The TextBox control has a default context menu that has Cut, Copy, Paste and a few other things. I am trying to replace this menu ...
0
votes
2answers
393 views

Add a custom menu item to the Context Menu in Windows Forms

I have a windows application. Now When I right click on the file, I am getting a context menu. What I want is to add a custom menu item in that built in Context Menu. e.g. "My custom Menu " in this ...
1
vote
1answer
325 views

ScrollDown a ContextMenu in case of OverFlow

I'm creating an app in WPF. I included a Systray icon using "System.Windows.Forms.NotifyIcon" the code looks like: // Create WinForm notify icon m_NotifyIcon = new ...
1
vote
1answer
468 views

How do you override the ContextMenu that appears when right clicking on winforms WebBrowser Control?

When you right click on WebBrowser control, the standard IE context menu with options such as "Back", "View Source", etc. appears. How do I make my own ContextMenuStrip appear instead? ...
1
vote
1answer
308 views

How do I select context menu template dynamically based on runtime property value in XAML? (context menu customization)

There are two context menus. To open the needed the context menu click the right mouse button. If IsData is true, ContextMenu1 will open; if IsData is false, ContextMenu2 will open. The issue will be ...
0
votes
3answers
258 views

Create a ContextMenu for any instance of a given control type

I'm fairly new to WPF and I have a question regarding the "factorisation" of logic across all controls of the same type. To be more precise, I want to have, for any instance of an Infragistrics ...
0
votes
1answer
467 views

WPF. Disable/Enable ListBox items ContextMenu & MVVM

I have a listbox with several items. This items could be in 3 state: Not Connected Connected Active I need to assign a context menu on each of those items. Actually, I want to have one list of ...
1
vote
1answer
239 views

Building a Windows Explorer Extension

I'm looking to build an application that will rely on adding menu extensions to the menu that appears when one right clicks a file or folder. I've heard that you can build it in Python, here are the ...
1
vote
0answers
949 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
1answer
117 views

How to move a window when the standard caption bar is hidden

In my .net winform application's title bar, I have put up a Panel control, which has a lot of other controls. Due to this, I don't get a context menu or the drag functionality when I click on the ...
2
votes
2answers
917 views

How to add an icon to System.Windows.Forms.MenuItem?

I tried to add an icon to one of my context menu items, but I couldn't do it. Can anybody help me? Here's the code I've written: private System.Windows.Forms.ContextMenu notifyContextMenu; private ...
1
vote
1answer
727 views

Insert a Context menu Item to Explorer and pass the Full File Name when Context Menu item is Clicked

I want to add a context menu item to the windows explorer context menu for all "jpg" files .The name of the context menu item will be 'process JPEG' when the user clicks this,a main executable will be ...
0
votes
2answers
179 views

WP7 - ContextMenu doesn't show on Hyperlink

I'm trying to programmatically add a ContextMenu to a Hyperlink. I've searched in the documentation and in forums, and seems that the correct solution should be this: var link = new Hyperlink(); ...
-1
votes
3answers
359 views

WPF ContextMenu bind MenuItem Icon to MenuItem Header

Please explain why this dosn't work.. <ContextMenu> <MenuItem> <MenuItem.Header> <TextBox Name="tbColor" Text="Black" /> ...
0
votes
2answers
317 views

ContextMenu in a ListView/GridView

Inside a ListView, I have a GridView and am trying to set things up so that when the user right clicks a 'row' in the ListView, I'm able to access the original data object. I think its the gridview ...
1
vote
3answers
358 views

How To Find Name Property Of Parent Element When ContextMenu MenuItem Is Clicked

I have the following code which creates a new Button with a ContextMenu with a single MenuItem called "Remove". My question is...in the removeItem_Click EventHandler, how do I find out the Name ...
3
votes
2answers
410 views

Can I create a multiple-column context menu in .NET Windows Forms?

I want to create a context menu that has several columns. Basically it would go like this: First item | [common option] | All Options > Second item | [common option] | All Options > Third item ...
1
vote
1answer
330 views

Best way to set a MenuItem's sub-menu height?

I currently have a menuitem (part of a context menu), with about ~35 menu items. Because of this, it causes the sub-menu to be huge. Even though I have scrolling ability, I would like to set the ...
2
votes
4answers
587 views

Dynamically filtering a menu (ContextMenuStrip) in C# without recreating the menu?

Is this possible? I plan to have 10 menu items where these are going to have sub-menu items (1 level deep only). I want to be able to filter them when the user types into my TextBox control. I know I ...
3
votes
2answers
327 views

Context menu is cut in some situations in WPF

Context menu is truncated in different .NET Framework. See images inside ZIP file (there are two screenshots, one from XP and other from Win7). I created a simple Visual Studio 2010 solution which ...
1
vote
2answers
241 views

Is there a way to show a “blocking” WinForms ContextMenu?

Is there a way to show a ContextMenu and block further execution until an item has been selected? In particular, I want to get behavior similar to ShowDialog() but for a ContextMenu. The straight ...
2
votes
3answers
248 views

dynamically associate a MenuItem with an item in a List

I'm using C# and I have a list of objects, and I want to show all the objects in a context menu, each object is shown as a MenuItem. When one MenuItem is clicked, I want to refer to the associated ...
1
vote
1answer
806 views

ToolStripMenuItem for multiple ContextMenuStrip

I have a form which contains tab panel with many tap pages. Each of them has its own context menu (display on right-click). But If I add a ToolStripMenuItem to multiple ContextMenuStrips only last ...
0
votes
3answers
214 views

.NET MenuItem.IsSubmenuOpen = true only works the first time

I have a ContextMenu with some sub-menus that have items (MenuItem) that can be selected. When the ContextMenu is opened, I want to recursively open the currently selected item. So, I have the ...
1
vote
1answer
1k views

Opening a ContextMenu from a ToolStripMenuItem

I am trying to mimic the behavior of, for example, Windows Explorer and how the Favorites items can launch a context menu. I currently am using: contextMenu.Show((sender as ...
2
votes
1answer
780 views

How can i add an item in the desktop right click menu in Windows XP

I want to have an entry in the desktop background right click. I have tried by editing the registry value. When I googled, I got some idea that we have to put the entry in ...
4
votes
1answer
278 views

.NET Windows Forms custom control, how to create the quick menu

Some controls have a useful context menu to access some often used properties, for example the standard TextBox: Clicking the arrow you get: How do I accomplish that with a custom control? ...
2
votes
1answer
2k views

How to change the checked state of a ToolStripItem in Winforms?

When I look it up, they list it as having a .Checked property. But both in Visual Studio and on msdn, it doesn't list any kid of Checked property. ContextMenuStrip menu = new ContextMenuStrip ( ); ...
0
votes
2answers
202 views

ContextMenu within another ContextMenu

Is it possible to put a ContextMenu within another ContextMenu? I have code to display a ContextMenu on the click of a button and a click event attached with this ContextMenu. Now, I want to display ...
4
votes
1answer
153 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 ...
1
vote
1answer
480 views

Add controls to contextual menu in WPF

I would like to add some contextual menu to some controls a in WPF project. This in itself is easy enough. I was wondering if it was possible to have controls like textbox or datepicker in them, much ...
3
votes
2answers
733 views

Need to create a context menu having header and scroll bar support

I need a global context menu style/template having a header and then various menu items; as the number of menu items in my context menu can be large it needs to support the scrolling. The problem ...
0
votes
1answer
457 views

How to capture context menu “view source” click in c# WebBrowser control?

I am trying to intercept a click on the "view source" item on C# WebBrowser's context menu. The default click opens the web page's source in notepad, but I would like, to cancel the default action and ...
4
votes
1answer
840 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 ...
1
vote
1answer
429 views

ContextMenu CommandParamater binding?

I am trying to bind the commandParamater of my ContextMenu item to another element on the form, however no matter what I try the commandParamater is always null. Can someone please show me how to ...
0
votes
4answers
2k views

WPF getting the control of a context menu

I have a context menu that looks like this A |--1 |--2 |--3 I need to access the object that the context menu is called from, after selecting 1 2 or 3 meaning if this is a context menu of a ...

1 2 3