Tagged Questions

A menu is a user interface mechanism that provides the user a means to view and execute application operations.

learn more… | top users | synonyms (1)

37
votes
4answers
20k views

Android : changing Locale within the app itself

My users can change the Locale within the app (they may want to keep their phone settings in English but read the content of my app in French, Dutch or any other language ...) Why is this working ...
20
votes
1answer
554 views

Hidden Main Menu in a delphi program, automatically shown using Alt key

First, let me say that I abominate this feature in Windows Vista and Windows 7. Second, I want to do it. Here is a question asking how to do what I want here, in WPF. I want to do the same thing, ...
18
votes
3answers
18k views

How do I create a right click context menu in Java Swing?

I'm working on a school project and we want to implement a right click pop-up menu in the gui. Currently we are doing something like creating a JMenu on right click and setting its location to that ...
15
votes
3answers
5k views

active menu item - asp.net mvc3 master page

I've been scanning around trying to find an appropriate solution for assigning "active/current" class to menu items from the master page. The line is split down the middle with regards of whether to ...
15
votes
1answer
2k views

Place a dividing line in a menu in WPF

In XAML, how do I put a standard dividing line in a menu? eg <MenuItem Header="_File" Name="m_fileMenu"> <MenuItem Header="_Open" ...
15
votes
7answers
3k views

When to use ellipsis after menu items

In pretty much all applications that have a menu bar, some of the items have an ellipsis (...) after them, and some don't. Is there a well known convention on when to put that ellipsis there and when ...
14
votes
2answers
890 views

UIDocumentInteractionController adding custom actions to menu (eg email, save to photos)

I've started using UIDocumentInteractionController for a new app but I'm wondering how to add additional actions to the action menu that you get on the preview screen? It seems that the menu only ...
14
votes
2answers
6k views

<nav> or <menu> (HTML5)

W3Schools.com and I'm pretty sure I remember seeing W3C.org state that <menu> should be used for Toolbar menus and listing form control commands. So, which one should I use for my main menu? ...
14
votes
5answers
14k views

Using the parent's DataContext (WPF - Dynamic Menu Command Binding)

I looked over this web and google and the solutions didn't work for me. I have a command on the ViewModel of a UserControl. Well, The usercontrol have a ItemsControl binded to a ObservableCollection. ...
13
votes
1answer
520 views

Looking for radial popup menu component for Delphi

Radial menus have started appearing in several places. I'm curious whether anyone has seen or is working on a radial menu component for Delphi? We have a concept of what we'd like, shown in the ...
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 ...
12
votes
4answers
1k views

Is there a way to change the behavior of the vim omnicomplete menu?

Omnicompletion is working, but it automatically inserts the first result. What I'd like to do is open the omnicomplete menu, then be able to type to narrow down the results, then hit enter or tab or ...
11
votes
1answer
495 views

Help with a multilevel menu with json and jquery

I'm trying to do a multilevel menu that slides when ">" is clicked. The first issue is that the CSS is not working properly, the < ul >'s aren't getting floated to the left. What I'm needing is ...
11
votes
7answers
5k views

Best Javascript drop-down menu?

I am looking for a drop-down JavaScript menu. It should be the simplest and most elegant accessible menu that works in IE6 and Firefox 2 also. It would be fine if it worked on an unnumbered list (ul) ...
10
votes
1answer
559 views

iPad Zoom Scale Detection

I'm trying to find a way to detect how zoomed in someone is on a web app so that when they click to pull up a menu, the menu stays the same size regardless of the zoom. To do that, I need to be able ...
10
votes
4answers
523 views

Make Disabled Menu and Toolbar Images look better?

Please see the attached screenshot which illustrates a TToolBar from one of my programs: Notice the last two images of the Toolbar, they are disabled. The way they have been drawn to appear ...
10
votes
3answers
10k views

Qt and context menu

i need to create a context menu on right clicking at my window. But i really don't know what should i do. Are there any widgets or i must make it by my hands? Programming language: Python Graphical ...
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
4answers
19k views

How can I create icons for menu items in Android's ListView?

I am using a ListView to present the main screen of my application. The main screen is essentially a menu to get into the different sections of my application. Currently I have the ListView contents ...
7
votes
4answers
648 views

C# - Add context menu item to all text boxes operating system wide

I know it is possible to extend the context menu of the standard file however is there a way to add items to the system-wide text box context menu? This would be so the new item appears in every text ...
7
votes
4answers
448 views

Do you know a website that implements a menubar at an angle between 0 and 90 degrees?

I was asked to implement a menu bar that is neither horizontal nor vertical. Here are two example buttons: This is something new to me, so to learn how to make this work I'm looking for a site (or ...
7
votes
4answers
14k views

Android: customize application's menu (e.g background color)

What is the way (if there is a way) to customize the menu (the one triggered by the MENU button of the phone). I'm especially interested in two things: changing the background color from the ...
7
votes
6answers
10k views

Control Height of <li> in IE 7

I have a menu built with <ul> and <li> tags. I want to have small separators between sections. For the separators, I just set a background color and a short height on an <li>. Looks ...
7
votes
3answers
5k views

PyQt: Show menu in a system tray application

First of all, I'm an experienced C programmer but new to python. I want to create a simple application in python using pyqt. Let's imagine this application it is as simple as when it is run it has to ...
7
votes
1answer
12k views

Can I change the column that links to the item with edit menu in a sharepoint list?

There was a similar question asked but it wasn't exactly what I am trying to do. Here is a link to the question: ...
7
votes
1answer
10k views

How do I create a menu separator bar in WPF using code

I am creating menus in WPF programatically using vb.net. Can someone show me how I can add separator bar to a menu in code? No xaml please.
6
votes
4answers
99 views

jQuery click menu

I'm working on this menu: HTML: <ul id="menu"> <li><a href="#">Item 1</a></li> <li><a href="#">Item 2</a></li> <li><a ...
6
votes
2answers
80 views

How can I include the width of “overflow: auto;” scrollbars in a dynamically sized absolute div?

(First question on Stack Overflow. Hope I'm doing it right.) I'm trying to create a floating menu that inherits its width from its content (since I don't know the width in advance, i.e. loaded from a ...
6
votes
1answer
3k views

android honeycomb menu button target

I am trying to get my app to be backward compatible so i need to show the menu button since we used the menu button in our app on previous versions. So I was reading and it says that if your target ...
6
votes
1answer
421 views

options menu - removing focus from item

how do I remove focus from options menu item? I.e. when I open the menu for the first time, none of the items has focus. however, if I focus on one of them using track ball, and then close and re-open ...
6
votes
3answers
866 views

Best way to reuse a footer menu in Android

I'm trying to implement a menu in the footer of an app, similar to i.e. the Engadget app. As I understand, getting a standard TabLayout to work in this way is not trivial (if at all possible?). As I ...
6
votes
1answer
2k views

Way to do radio buttons in Qt 4.4.3 menus

On Linux would like to have a set of menu items which are mutually exclusive and have the currently selected one be designated by a radio button instead of a checkbox. Is there a way to do this in Qt ...
6
votes
4answers
3k views

How to create a JButton with a menu?

I want to create a Toolbar for my application. If you click a button on that toolbar , it will pop-up a menu , just like the toolbar of eclipse. I don't know how to do it in Swing. Can someone help ...
6
votes
3answers
1k views

Is it possible to add an item to the right-click context menu of a Mac OS programmatically?

I have a program that works with a variety of files on both the Windows and Mac OS. I would like to give the user the option of adding a new option to their right click/control click context menu to ...
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 ...
6
votes
2answers
1k views

Tab character in Java

Trying to get a tab character into a JMenuItem using \t but it's not printing. I bet it's something really basic I'm missing. Here's the code menuItem = new JMenuItem("New\tCtrl + N"); Thanks
6
votes
5answers
7k views

How to make dropdown menu like “delicious” and “google”?

I want to make a dropdown menu like delicious has at this http://delicious.com/search?context=all&p=sql&lc=1 page. In this page click the arrow which is with "Search" button. On click it ...
6
votes
4answers
2k views

Menu Accelerator Keys Not Showing Up (Delphi 2009)

I've tried my best and cannot figure out what happened here. It worked fine in Delphi 4. After upgrading to Delphi 2009, I don't know if this is the way it is supposed to work, or if it's a problem: ...
5
votes
2answers
110 views

Creating menus at runtime depending on user role

I am trying to create a menu that sorts differently depending on what the user role is. For example, if the user is an Admin role, the menu shown will be: AdminPane RegisterUser UserRoles ...
5
votes
1answer
262 views

Android and Honeycomb - how to have a menu icon with SDK 13 without having an “action bar”

I would like to maximize use of the screen for a Honeycomb app. Since the bottom of the screen is already stuck with "always-on" items, I'd like to add a menu button down there in that space rather ...
5
votes
2answers
78 views

problem while creating button with many divs

This is the menu I'm trying to build. Now I'm confused and can't figure out how to make it. One div (blue arrow) needs negative margin to get outside the box, another div for blue button background ...
5
votes
4answers
2k views

CSS dynamic horizontal navigation menu to fill up specific width (table behavior)

I need to create a horizontal navigation menu with a changing number of items (this is important - I can't hard-code widths into the CSS and I don't want to calculate them with JS) that fill up to a ...
5
votes
3answers
403 views

How Can I Implement Highlighted Toolbar Icons With Delphi?

I'd like to highlight my toolbar icons when their associated action has it's "checked" property set to true. I'd like to do it in a manner similar to how Microsoft Office 2003 did it, e.g. see the ...
5
votes
3answers
370 views

Slim down Eclipse context menus

I have several plugins (Apatana, SVN, Pydev, Zend Debugger, PHP) installed in my Eclipse 3.5.2 (Ubuntu 10.10) installation. The one problem that keeps bugging me since I first used Eclipse years ago ...
5
votes
4answers
577 views

Justified CSS menu not working without line breaks between <li>

I'm designing a custom wordpress template for some friends, and want a horizontally justified top menu. All would be fine, except that wp_page_menu outputs the list elements all in one line, which ...
5
votes
2answers
699 views

How to Develop Dynamic Plug-In Based Functionality in C#

I've been looking around for different methods of providing plug-in support for my application. Ideally, I will be creating a core functionality and based on different customers developing different ...
5
votes
3answers
9k views

Change background color of android menu

i'm trying to change the standard light grey in a light green. Seems that there is not a simple way to do this (trough theme for example) but i'ìve found this link: http://tinyurl.com/342dgn3. The ...
5
votes
4answers
774 views

Creating an offscreen frame in Java (or: how to avoid a blank menu on a Mac, when all application windows are closed)?

I am making a Mac application, and I want my menu bar to look right. Any Mac user knows the menu bar should be in the top screen menu. Setting apple.laf.useScreenMenuBar to true in the property list ...
5
votes
5answers
391 views

How to make a HTML list appear without the bullets signs using CSS only?

The browser will consider the list existence and arrange them accordingly, however won't show the small icon next to each one of them like the following: Normal list appear like the following: text ...
5
votes
6answers
2k views

Navigation menu with highlight in Asp.NET MVC?

It's a simple question. How did stackoverflow do their menu in Asp.net MVC, with highlight on what page we are on.

1 2 3 4 5 60