Tagged Questions
A menu item is a child element of a menu that provides the user a means to view and execute a specific application operation.
12
votes
2answers
462 views
Ugly “disabled” images of TMainMenu
Delphi 2010, Win32 VCL. I need to create a main menu for my application with the most standard look. TMainMenu looks nice in all Windows versions, the only bad thing is when it displaying images for ...
11
votes
1answer
3k views
Change Menu Items Programmatically From Eclipse Plugin
I would like to be able to completely remove menu items upon startup of my eclipse plugin application. What I want to do is be able to add these menu items later depending on business logic based off ...
9
votes
3answers
394 views
How to select a Menu Item without closing the Menu?
By default when you select an item from a TMainMenu or TPopupMenu etc, the menu closes after it was clicked. I would like to change this behavior so that when I select on a menu item, the menu does ...
9
votes
3answers
650 views
Is there a standard way to add dividers between action bar items in Android 3.0?
I have a slight problem trying to customise the look of the action bar in my app. I want to be able to have the pixel wide dividers to group action bar items that you see in many of the native apps ...
9
votes
4answers
2k views
Mutually exclusive checkable menu items?
Given the following code:
<MenuItem x:Name="MenuItem_Root" Header="Root">
<MenuItem x:Name="MenuItem_Item1" IsCheckable="True" Header="item1" />
<MenuItem ...
9
votes
3answers
9k views
WPF menu item with image
<Menu Height="22" Margin="0,109,102,0" Name="menu1" VerticalAlignment="Top">
<MenuItem Header="Reports">
<MenuItem.Icon>
<Image Width="20" ...
9
votes
5answers
13k views
WPF setting a MenuItem.Icon in code
I have an images folder with a png in it. I would like to set a MenuItem's icon to that png. How do I write this in procedural code?
8
votes
8answers
733 views
copyright free collection of resource images for Delphi menu items and toolbar buttons
Every time I need to create a menu or toolbar with actions I end up collecting some images extracted from different application and hand tuning them with the image editor. This is time consuming and ...
8
votes
5answers
6k views
How can I bind an ObservableCollection of ViewModels to a MenuItem?
When I bind Menu Items with an ObservableCollection, only the "inner" area of the MenuItem is clickable:
In my View I have this menu:
<Menu>
<MenuItem
Header="Options" ...
6
votes
2answers
312 views
How to create subitems menus under the application name on OSX?
How to add TMenuItem under Project1 and above Quit on the screenshot below?
I have created a TMenuBar with property UseOSMenu checked.
The first TMenuItem I added is the second one in the main ...
6
votes
3answers
312 views
How to add menu items separators which work as expected on OSX?
On Windows platform, with the VCL, when we want to add a separator in a menu, we add a TMenuItem with a Caption := '-';
With FireMonkey, we add a TMenuItem with a Text := '-';
It works as expected ...
6
votes
3answers
8k views
WPF: Nested MenuItems in a ToolBar
I am working on some XAML for a wpf application and I am having some trouble getting it to do what I want. Here is a sample of my XAML:
<!-- Tool Bar Tray -->
<ToolBarTray ...
6
votes
3answers
15k views
WPF C# - Change the brush of a menu's background
Does anyone know how to change the brush for a menu's background? This sounds simple, but I don't see any obvious way to do this. You'd think that the Background property would change it, but it ...
5
votes
1answer
529 views
I18n in Struts-menu with Struts 2
I've developed a menu using struts-menu 2.4.3 with Struts 2. It's working ok but I need to take the titles of the menus from a properties file (router-messages.properties). The whole application is ...
5
votes
1answer
2k views
WPF MenuItem IsChecked Binding not working
Anyone know why the menu item binding does not work ?
<ToggleButton Name="toggleButton" Checked="checkBoxPublish_Checked" >
<ToggleButton.Resources>
...
5
votes
1answer
626 views
WPF: Is it standard that when a menuitem is disabled the icon is not greyed out?
I have menuitems with icons and when it is disabled the icon remains the same. Is it up to me to supply a disabled icon and, if so, does this also apply to menuitems bound to a command?
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
4answers
10k views
WPF MenuItem Header and HeaderTemplate
I want to bind a list of KeyValuePair to a list of MenuItems.
I thought I should use MenuIten.HeaderTemplate, but it didn't work. I only got blank headers.
<MenuItem
...
5
votes
1answer
363 views
WPF: Disappaearing icons
I have several icons which are declared in Window.Resources. They show up fine the first time they need to appear (eg: a Menu is clicked, the MenuItem icon works), but after another Menu (eg: a ...
5
votes
3answers
12k views
ASP.NET MenuItem Individual Styles
I'm hoping to use an ASP.NET Menu Control for navigation through my site. However, I've got a requirement that each MenuItem must be styled differently (different colors, both static, and onHover). ...
4
votes
2answers
356 views
delphi - how do you find out which TPopupMenu a TMenuItem belongs to
Should be simple enough but I can't see it.
You can find out the component that was right-clicked on to display a popup menu with:
PopupMenu1.PopupComponent
but how do you find out the popup menu ...
4
votes
2answers
104 views
Is there an API in Windows 7 for creating “split menu items”?
I don't know what their official name is, but I mean these things:
Is there an official API for creating those in my own program?
And related question: Did you ever see these "split menu items" ...
4
votes
2answers
913 views
WPF - MenuItem missing Icon/Image
Im getting menuItem icon appearing only on last menuItem.
If i snoop the app only last menuItem has image in icon, while if i debug all MenuItems appear to have image in icon. Also if i add ...
4
votes
4answers
2k views
WPF - how to hide menu item if command's CanExecute is false?
By default menu items become disabled when its command cannot be executed (CanExecute = false). What is the easiest way to make the menu item visible/collapsed based on the CanExecute method?
Thanks
...
4
votes
3answers
2k views
How do I set MenuItem's Icon using ItemContainerStyle
I'm following the example here of binding a MenuItem to a data object.
<Menu Grid.Row="0" KeyboardNavigation.TabNavigation="Cycle"
ItemsSource="{Binding Path=MenuCommands}">
...
4
votes
4answers
839 views
How can I incorporate a data bound list of MenuItems to another MenuItem in WPF?
I have a 'File' MenuItem were I would like to display a list of recently opened files.
Here is the xaml I have now:
<MenuItem Header="File}">
<MenuItem Header="Preferences..." ...
4
votes
1answer
3k views
Bind ContextMenu's MenuItem visibility to ListView selection
I have a user control with a ListView containing simple items from an ObservableCollection. I would like the ContextMenu of that ListView to contain items depending on what's selected in the ListView. ...
4
votes
2answers
4k views
Java: How can I add a JMenu to a JPanel or create a drop down button?
is there any way to add a JMenuItem to a JPanel so that I can create a button to show multiple options, like the latest news button in firefox, under the address bar?
I can only add JMenu and ...
4
votes
1answer
4k views
add menu item to default context menu
I'd like to add a menu item to the default ContextMenu of a RichTextBox. I can create a new context menu but then I loose the spell check suggestions that show up in the default menu. Is there a way ...
3
votes
7answers
165 views
ClientID of MenuItem
I have a item on a page, which has a series of MenuItems (generated dynamically from a database) as Items of the Menu.
Each MenuItem renders itself as
<a ...
3
votes
1answer
107 views
How can I use a different text color for disabled menu items that are owner-drawn?
I have this code for colourize a MainMenu in Delphi. It works well with OnDrawItem events, but I need even something and I don’t know how can I make it. I would like that the font of a MainMenu item ...
3
votes
3answers
292 views
How do I get a top-level WPF MenuItem to be disabled when all its children are disabled?
I have the following MenuItem inside of a Context Menu in my WPF application:
<MenuItem Header="Email">
<MenuItem Command="Commands:CommandRepository.GenerateUserEmailCommand"
...
3
votes
4answers
147 views
How to associate an event with a menuitem in WPF using VS2008?
I am in the process of learning WPF (I don't know much yet). I know how to associate a menu subitem to an event by directly editing the xaml but, I'd like to know how to do the same thing using ...
3
votes
2answers
553 views
Blackberry: change sorting of a KeywordFilterField
I have prepared a simple test case demonstrating my problem.
It is just 1 file (CheckMenu.java, listed below) and instantly runnable.
Once the user changes the sorting method by selecting 1 of the 2 ...
3
votes
1answer
759 views
System.Windows.Controls.MenuItem without icon area
Whenever I try to play with the look of WPF menu item, I get a wast opportunities to customize the header, which is basically the text of an item.
What I need, is to have a black menu, with white ...
3
votes
2answers
671 views
Setting MenuItem icon through style setter
<Style x:Key="ContextMenuItemStyle" TargetType="{x:Type MenuItem}">
<Setter Property="Icon" Value="{Binding Icon}" />
<Setter Property="Header" Value="{Binding Text}" />
...
3
votes
2answers
261 views
ASP menu is not showing
My web application menu isn't showing in any browser I use to test.
I looked around and checked out if it wasn't the z-index bug mentioned here, that seems to have caused some trouble to many people.
...
3
votes
1answer
93 views
How to display an icon in a menu item?
I know how to create a plain text menu item:
item = gtk.MenuItem('text')
but how can I display an icon?
Like this:
3
votes
3answers
2k views
How can I alter a MenuItem on the Options Menu on Android?
I have an Options Menu on my Activity with an MenuItem "Start". When this MenuItem is selected I would like to alter the Menu so it contains a MenuItem "Stop". And finally when "Stop" is selected, I ...
3
votes
1answer
377 views
In WPF, how do I right justify menu items while keeping keyboard shortcuts?
I recently changed my XAML in order to gain the capability to right-justify menu items such as setting font sizes in the below graphic:
File Configure Help
+-------------+ +----+
| ...
3
votes
2answers
2k views
WPF Submenu styling
I have a ContextMenu style and a MenuItem style, both of which are working properly on the top menu. The problem is if I add a submenu to a menu item, then the submenu is not being styled properly. ...
3
votes
1answer
208 views
Drupal 6 primary links: how do I link to my latest news?
I've defined a custom content type - news. I also have a menu item - latest news - that links to one of the news nodes. I want it to link to the latest of them. How would I do that?
3
votes
1answer
251 views
How do you make height of context menu items not be fixed (ie scale to size of the particular item) in .Net?
See the two images below. I don't want each item in the menu to be the height of the largest. It should size to fit the contents. I've played around with a number of properties and haven't been ...
3
votes
2answers
2k views
Using a DataTemplate for a MenuItem causes extra space on the left side to appear?
Whenever I attach a DataTemplate to a MenuItem, each generated menu item gets an extra space on the left side. This extra space looks as wide as the space reserved for the check, which I use. Building ...
3
votes
3answers
2k views
WPF MVVM: Find out on which header context menu has been clicked
I am trying to use the MVVM pattern to write a WPF application. I am using WPF data grid (from the toolkit) which lacks the autofiltering feature. So I want to implement it. I've added a context menu ...
3
votes
4answers
4k views
WPF MenuItem children not showing
I am using an ObjectDataProvider and a DataTemplate to populate a MenuItem inside my Menu bar. (WPF, C#/XAML) See snipet below.
Result: The top menu item appears, when i click on it, the wrapping ...
3
votes
1answer
820 views
Is there a way to programatically close a menuitem in WPF
I have a menu in wpf that has an input box and a button on it. Once the user clicks the button I need to close the menu.
Is there a way to do this?
<Menu x:Name="MainMenu">
...
3
votes
1answer
919 views
WinForms open popup usercontrol as menuitem menu dropdown?
Been searching everywhere and can't find a way to do this.
I have a menubar across the top of my winforms program. Now it just pops up a normal menuitem menu. I would like to disable that menu and ...
3
votes
2answers
4k views
Android MenuItem Toggle Button
In my Android application, I want a setting to be toggleable in it's menu like the Dialer app does for speaker and mute. You can see a picture below:
You see how the Speaker, Mute and Hold ...
2
votes
3answers
31 views
Selecting Current MenuItem in wpf
How can I select the currentItem in a menuitem collection. Like one would do with a listbox. I tried wrapping the collection in a collectionViewSource, However that brought be no such luck.
Thanks in ...