This is .net framework class which provides a container for Windows toolbar objects. This is used in creating toolbars in Winform application.
Questions tagged [toolstrip]
288 questions
1
vote
1 answer
Visual basic toolstrip vanishes bug help
There it is! A BUG in Visual Basic Express 2010:
I have several ToolStrip controls docked within several panels of a tabPanel.
And sometimes, some toolstrip disappear from the design page.
Still exists since I can see its name in the bottom under…

Didier Levy
- 3,393
- 9
- 35
- 57
1
vote
1 answer
How to access values of a ToolStrip item that was added dynamically
Since only some standard items (textBox etc.) can be added to a ToolStrip control at design time in a Winform app, I've added a DateTimePicker control dynamically as follows but I'm not sure how to access the datetime value of the selected date in…

nam
- 21,967
- 37
- 158
- 332
1
vote
1 answer
How to implement a toolstrip to my GUI?
I am creating a simple application to manage unknown words when learning a new language. The application is written in Python and I am using Tkinter to build the GUI.
As you can see, I am almost done - all I need is a toolstrip with several buttons…
user7829779
1
vote
2 answers
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 the old code has to do to change the text of an…

Chris Pfohl
- 18,220
- 9
- 68
- 111
1
vote
1 answer
Close ToolStripMenuItem when mouse leaves ToolStripMenuItems
I am new to windows Forms so I am wondering what the best approach to my problem is.
I want the ToolStripMenuItems of the ToolStripDropDownMenu to close only when the user's mouse leaves the area containing them (All the…

Anton James
- 385
- 3
- 6
- 18
1
vote
1 answer
ToolStripButton still highlighted when form is disabled/enabled
I have a WinForms application containing a ToolStrip with ToolStripButtons. Some of the button actions disable the main form while the button action takes place and re-enable it when finished. This is done to make sure the user does not click on…

Andres
- 121
- 6
1
vote
1 answer
ToolStripSplitButton splitter issue
I have a form with ToolStrip and I placed on it ToolStripSplitButton.
toolStrip1.BackColor = Color.White;
toolStrip1.GripStyle = ToolStripGripStyle.Hidden;
splitButton.Image = PlusPic;
splitButton.Size = new Size(30, 30);
…

melya
- 578
- 5
- 24
1
vote
2 answers
Toolstrip combobox onselectionchangecommitted not working
I'm trying to trigger some code when a user makes a mouse selection in a toolstrip combobox on a winform and have been trying to get the OnSelectionChangeCommitted to work (link here) similar to this question. I can't use the SelectedIndexChanged…

Zeus
- 1,496
- 2
- 24
- 53
1
vote
1 answer
ToolStripDropDownButton does not show items when right aligned
I developed a Winforms application that has a Toolbar. The last element in the toolbar is a ToolStripDropDownButton with some items.
I needed this button to be shown apart from all other toolbar buttons, so I set the Alignment property to right.
In…

jstuardo
- 3,901
- 14
- 61
- 136
1
vote
1 answer
Disable mouse capturing by Button
I create custom ContextMenuStrip with Button in it:
ContextMenuStrip _contextMenu = new ContextMenuStrip();
_contextMenu.Items.Add(new ToolStripMenuItem("Item"));
_contextMenu.Items.Add(new ToolStripControlHost(new Button()));
When I open this…

melya
- 578
- 5
- 24
1
vote
1 answer
Scrollbar does not scroll to the top in tabpage
I have a strange behavior with my tabPage. First of all - when initializing the Form I use following code:
tabPage3.VerticalScroll.Value = 0;
However it looks like this:
scrollbar position
The white line in the image is a toolstrip, so the…

Canox
- 557
- 1
- 7
- 20
1
vote
1 answer
Make a ToolStrip Button staying highlighted when clicked in C#
I have a simple ToolStrip with buttons in it which contain images and text. When I go over that button it changes appearance (same when it gets clicked). How can I customize this so that it stays highlighted when clicked? I have to do this over a…
user4664405
1
vote
1 answer
Group related controls on ToolStrip so they are always visible together
I have an application that has a tool strip with related controls set apart by ToolStripSeparaters. It looks something like this:
However, when the window size shrinks, some of the controls get moved to a little drop-down section. Unfortunately,…

Jeff B
- 8,572
- 17
- 61
- 140
1
vote
1 answer
VB Get index of select of dynamically created ToolStrip item
I haven't programmed in VB for a while so I'm a bit rusty.
I have an XML that I'm reading that contains a list of projects. When I load my form, I populate a toolstrip menu (as well as a combo box which works fine) with the project names. I also…

Tim
- 13
- 5
1
vote
3 answers
A Toolstrip that can auto size itself
I am using this nice code which by the way if you are aware of any better way to accomplish this, I really appreciate letting us know .
so here is the Toolbar that can float…

Bohn
- 26,091
- 61
- 167
- 254