Tagged Questions
The menustrip tag has no wiki summary.
6
votes
2answers
272 views
Can I split a menu into multiple columns in WinForms?
A menu in an application of mine is going to contain too many items to be displayed in a single vertical row. Splitting it into 2 menus does not look a good solution as it would break UI semantics. ...
4
votes
1answer
437 views
.NET MenuStrip with native Windows renderer?
Does anyone know how to have the MenuStrips to rendered with native Windows look and feel depending the OS version the user is using?
The current renders don't do it...
I'm currently using a third ...
4
votes
3answers
5k views
Adding a horizontal separator in a MenuStrip
I can't seem to find any way to add a horizontal separator in a MenuStrip. Visual Studio complains Cannot add ToolStropSeparator to MenuStrip.
Any idea's how I can do this?
Thanks.
3
votes
1answer
95 views
How do I fire a mouse click on a C# MenuStrip when a form become activated/focused? [closed]
Possible Duplicate:
Click lost on focusing form
If a form with a MenuStrip is not the window that has focus and you click on the MenuStrip, it uses that first click to make the window ...
3
votes
1answer
2k views
Using a Windows 7 style menustrip in Windows Forms
I am using windows forms and when I use a MenuStrip item, I get something that looks like this:
http://imgkk.com/i/ggn1.png
Is it possible to use menu strips like the ones the system uses, like in ...
3
votes
1answer
609 views
“Tool tip” covered by ToolStripItems if they have dropdown items?
In Windows Forms - if the dropdown items of a MenuStrip has tooltips and dropdown items themselves the tooltip will have about a 50% chance of showing up below the ToolStripItems.
What is the ...
3
votes
1answer
2k views
How to remove MenuStrip submenu margins?
Do you know how to remove margin (probably the one for image and check box on the left and right) of the submenu in MenuStri? In MSDN article there is explained how to remove it from context menus. It ...
2
votes
1answer
159 views
Delaying opening of sub-menus in a menustrip
Our environment: Visual Studio 2010, c#, .net 4 client profile.
We have a Winforms application that contains a menustrip in its main form. The items of the menustrip contain both an image (64x64) and ...
2
votes
2answers
319 views
Can I use MenuStrip as ContextMenu?
Hi Ladies and Gentlemans!
I have a MenuStrip and want to have a ContextMenu with same structure.
Can I use my MenuStrip as ContextMenu, or quick create ContextMenu with DataSource from MenuStrip?
...
2
votes
1answer
1k views
Programmatically Adding Items To A Menu Strip?
Let's say I have a WinForm that has a menu strip in it. Let's say one of the items of this menu strip is named Cars.
Whenever I open my WinForm, I want to add a subitem under Cars for every car in a ...
2
votes
1answer
509 views
How to call click event function of menustrip item C#?
I want to call the click function of MenuStrip in C# associated with the item of MenuStrip whose index i can provide
e.g i want to call
menuStrip1.Items[0]
click function.
2
votes
2answers
142 views
Preferred menus for C# application
Which of the menu tools do you use for C# windows applications? I began with MainMenu, but when I moved to VS2005, only MenuStrip appeared in the Toolbox, so I assumed it was new and better. However, ...
2
votes
2answers
2k views
How to add things to a menustrip programatically?
I want to add whatever is written in a textbox to a menustrip. In the File > Recent Searches thing I have.
How can I do programatically? And can I assign an event handler dynamically so that when a ...
2
votes
4answers
821 views
“Red Cross” problem on MenuStrip and ToolStrip
I have a piece of software that has worked fine on many machines, althoughon one machine there is a problem that appears to occur occasionaly, the MenuStrip and the ToolStrip both appear as a blank ...
1
vote
1answer
53 views
Add ToolMenuStripItem to MenuStrip at specfic item?
I am using WinForms, i have tried TreeView and it almost have simliar structure to the MenuStrip, only one thing i can't figure out is how to insert a ToolStripMenuItem as a sub item. Is there anyway ...
1
vote
0answers
35 views
Override MenuStrip.Items.Add()?
I have create a database tables which holds all the menu with a self join to make it like Level0 -> Level1 -> Level2 .....etc. Populating these records in a MenuStrip required a huge amount of code ...
1
vote
2answers
105 views
C#, menustrip specific menu open when user have logged in
in my menuStrip i have multiple forms,
So in 1 of them i want to be access only when use is pass from a login form i have create..
Lets say menustrip, menu is on form1, and the login form is Form2,
...
1
vote
2answers
425 views
How can I remove the white line drawn under a MenuStrip control?
I read a few other articles about how people want to customize the colors and gradients of a MenuStrip.
What I want to do is remove the gradient so that the MenuStrip is the same color as the rest of ...
1
vote
3answers
694 views
Move window without border
How do I move a window that does not have a border. There is no empty space on the application, all that is available is a webbrowser and a menustrip. I would like the users to be able to move the ...
1
vote
2answers
177 views
Is there a way to make A ToolStripMenuItem shared between Menus and ToolBars?
I'm porting an old VB6 project to C#, using Winforms. The original uses DataDynamic's ActiveBar suite to manage changes to multiple items in toolbars, menus, and shortcut ribbons simultaneously. All ...
1
vote
2answers
521 views
Change size of ToolStripMenuItem
I'm custom drawing a menu item in a MenuStrip. The problem I'm having is that the menu item insists on sizing itself based on the text, which is not what I want (there is no text). I can set AutoSize ...
1
vote
3answers
520 views
Disable MenuStrip Dropdown in Windows Forms Application
I am disabling the parent menu option in a Windows forms menustrip. When you hover over it, the submenu still opens. Is there a way to disable the submenu opening or do I have to disable all the ...
1
vote
1answer
590 views
C# Help For Adding Radio Button For MenuStrip
Im a beginner for C# language.So i need a help from who genius from this scheme.i need to add a radio button for menu strip. i already change "clickonclick" property to "true".but i need a option like ...
1
vote
0answers
129 views
Move ToolStripItem down
I have a custom-rendered ToolStrip but the menu items are not where I want them to be. How do I move them down within render's code?
You can't change the Bounds property of the items and I don't ...
1
vote
1answer
1k views
ToolStrip vs MenuStrip - can I make their rendering identical?
I need to display a toolstrip directly beneath a menustrip in my application, but setting RenderMode = Professional for each does not give identical results. They both show a background gradient, but ...
1
vote
3answers
1k views
Winforms MenuStrip Underlined Hotkey Letter
Typically the hotkey letters on a MenuStrip are underlined. (&File, &Open, etc) On a project I'm working on the underline shows up in the designer, but not at run time. I can't find the ...
0
votes
0answers
21 views
Same MenuStripItem shortcut in different forms
Let say I have an application with two forms, Form1 and Form2. On each form I have MenuStrip. On Form2 it looks simply like this:
File
|
|-Save (Ctrl+S)
But on Form1 i have MenuStrip with only one ...
0
votes
1answer
18 views
move MenuStrip item text into resource file
I am using .NET winfrom (C#) I have a form with a menustrip control in it, I added menu items in the designer and assigned test to them, now I want to move this text into a resource file. how do I do ...
0
votes
0answers
48 views
preventing mdi child forms from displaying menustrip when not active
I have an MDI container which has a menustrip of its own. I have three child forms which (can) be displayed in the MDI container. All three of these forms have their own menus. The child form which is ...
0
votes
2answers
112 views
VB.Net MenuStrip - All submenus visible at once
Weird question:
I have a menustrip in a VB.Net windows form, my teacher in the university said that if I could make all dropdowns of the menustrip become visible at once, he would release me from the ...
0
votes
2answers
88 views
C# / WinForms / Make Main form's menu accessible from child form (shortcut keys)
I've got a form with a menu strip that has keyboard shortcut's.
Keyboard works as expected.
Then I add another form that is owned by the main form (child.Owner = main).
When this form has focus I ...
0
votes
0answers
120 views
(VB.NET / C#) How to create Vista-like style MenuStrip? [closed]
Possible Duplicate:
Standard Windows menu bars in Windows Forms
how do I make my MenuStrip vista like.
This is what I mean by that:
0
votes
0answers
91 views
How to edit Hover Colors of menu strip in Visual Studio 2010
I want to edit the visual settings for the menustrips in Visual Studio 2010 (I'm coding in VB.NET). I want to change the hover colors for the menu strip to Gray and get rid of the white border on the ...
0
votes
2answers
78 views
Winform menustrip and hiding tabs
Hello I'm thinking of creating a tabcontrol which the tabpages will be filtered by the clicks in the menustrip.
For ex.
My menustrip is in form 1
and my tabcontrol is in form 2
My tabcontrol ...
0
votes
2answers
118 views
can't get value of trackbar on menu strip
I've added a trackbar to menu strip manually because vs 2008 doesn't allow me to do.
However, i can't get the value of trackbar.
Form1.cs:
...
0
votes
1answer
43 views
What is the recommended way to show/hide controls based on menustrip?
Sorry if this is too noobish a question. Thank you for being patient...
I'm working on a .NET Winforms application in VS2010.
I want to hide/show groups of controls on the form based on which ...
0
votes
1answer
91 views
C# : menustrip control
i have a menustrip with two items british and SI , there are the items names , i want to display some text when ever one of them is clicked , i tried that with that code but nothing happens when i ...
0
votes
2answers
101 views
mouseover event for menustripitem
I have some menustrip Items in my menustrip.I want to set the color of the menustrip item when the mouse is on the menustripitem.Is it possible to have mouseover event for a menustripitem.
Thanks in ...
0
votes
4answers
140 views
Allowed Menustrip only one child at moment
How can i allow only one window at a time when i click menu in menustrip ?
Ex: i have Menustrip Ordre, Tarif, etc... when i click Ordre for the first time it will open a new form, but for the second ...
0
votes
1answer
329 views
C# WinForm Menu Strip
I m use to ASP.NET with masterpage and session. i put the menu in masterpage. After sucsessfuly login i save the variable in session.
Now i m working with Winform.
the Session i replace with variable
...
0
votes
2answers
485 views
Disabling a ToolStripMenuItem vs. disabling a MenuStrip.Item
When a user logs into my application, there are some menu items that I don't want every user to see. So I would like to either disable or make invisible the menu item. For example ...
0
votes
0answers
103 views
winforms - mdi app - menu windowlist and preventing multiple instances of childforms
It's a bad title...
I have a mdi application and I have numerous child forms which are tracked by a menustrip "Windows" menu. As I open childforms they show up numbered under the Windows menu group.
...
0
votes
1answer
78 views
How to make the File menu drop down on form load?
How to make the File menu drop down on form load ?
I want to make the File Menu to drop down when the form is opened.
How to do this ?
0
votes
1answer
237 views
Howto size a control in a ToolStripControlHost-item?
i have litte problem here.
I just made a UserControl for Undo/Redo like in Visual Studio.
I wanted to add it to my MenuStrip by an ToolStripControlHost.
The problem is, that the control is too ...
0
votes
0answers
450 views
How to get checked ToolStripMenuItem?
I am using a MenuStrip with two main ToolStripMenuItems, each one of those has its "dropdown" with more ToolStripMenuItems that have the CheckOnClick property set to true.
Now I am trying to retrieve ...
0
votes
0answers
165 views
Menustrip stays on the form when closed
what happens is when i used close the menustrip options/submenus. it stays on the Form.
is there a way for me to prevent this from happening. can i write some code that would make it dispose of its ...
0
votes
2answers
191 views
creating a dynamic “recently opened files” menu
I want to add a feature to my MenuStrip where I want there to be an option where you can hover over or press the menu option to open recently opened projects .
File---> Recently Opened ...
0
votes
2answers
287 views
Can a MenuStrip control have its LayoutStyle set to StackWithOverflow?
I create a simple form with a MenuStrip. The MenuStrip's LayoutStyle is set to HorizontalStackWithOverflow (the default).
According to the MSDN reference on MenuStrip, its LayoutStyle property is ...
0
votes
1answer
180 views
prevent menustrip from being selected by pressing alt
I would like to have some shortcuts with alt but when I press alt the menustrip gets selected. How can I disable this behaviour?
0
votes
1answer
921 views
Need idea to create the dynamic menu strip in windows application using data table
Menu style:
File . Tool
-file1 -tool1
-file2 -tool2
-file3 -tool3
datable contains the rows like.
col1 col2
------------
File file1
File file2
File file3
Tool tool1
Tool tool2
...