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
4
votes
1 answer
Problem with Toolstrip WinForms .Net Core
I'm making a Winforms application in .Net Core to learn some basic stuff. It's a simple application where I write some text from a textbox to a file (basically like notepad).
Now I wanted to add a toolstrip with a toolstripbutton to make a new file…

terrinizer
- 61
- 4
4
votes
3 answers
C# ToolStrip is transparent but border is still visible?
I have a ToolStrip in a C# application that I set the background color to Transparent. This reveals the underlying form's color but unfortunately the ToolStrip border is still visible.
I've implemented a Custom Renderer and overridden the…

E.Beach
- 1,829
- 2
- 22
- 34
4
votes
1 answer
ToolStrip StatusLabel DoubleClick Event Doesn't Raise
I'm having trouble with subscribing to the DoubleClick event for a dynamically created ToolStripStatusLabel.
In my code I create a series of ToolStripStatusLabel items inside a StatusStrip, and subscribe to its DoubleClick event, but it looks like…

Kaikus
- 1,001
- 4
- 14
- 26
4
votes
1 answer
C# Winfoms Toolstripdropdown close on button click
I have used toolstripdropdown in my Windows form to show list of buttons on click of another button.
var td = new ToolStripDropDown
{
AutoSize = true,
DropShadowEnabled = false,
BackColor =…

Rocky
- 405
- 7
- 17
4
votes
1 answer
c# toolstrip doesn't dock under menustrip
I have a menustrip that I create using the forms designer. I then want to programmatically add a toolstrip toolbar UNDER the menustrip. The reason is that this toolbar is a set of tools that I add as a plugin to the main application. As such, when…

Carlo M.
- 331
- 1
- 3
- 12
4
votes
1 answer
How to change colour of ToolStrip DropDown arrow?
In my Winforms application I have a toolstrip which I set it's BackColor property to Black. All is good except the fact that every drop-down button on the toolbar draws its drop down arrow in black, thus makeing it invisible. My question is, how do…

Valentin Radu
- 629
- 1
- 11
- 26
4
votes
3 answers
ToolStrip memory leak
I've been having trouble with memory leaks with the SWF-ToolStrip.
According to this http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=115600# is has been resolved. But here it seemes not.
Anyone know how to resolve…
Marcus
4
votes
5 answers
"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 white background with a red cross over it, as a…

Lloyd Powell
- 18,270
- 17
- 87
- 123
3
votes
3 answers
Custom ToolStripButton for ToolStrip in Visual Studio Designer form
I have custom tool strip button
BindableToolStripButton : ToolStripButton
It works well, but I don't know possibility to add this item to control in design menu..
Could I add my BindableToolStripButton to the designer menu?

Yuriy
- 2,670
- 6
- 33
- 48
3
votes
3 answers
ToolStripButton "Reset Appearance" / "Fire Leave Event"
I have a ToolStripButton that performs an action. The user clicks the button and the button is disabled to prevent the action being performed twice. After the action is complete the button is re-enabled. It all works perfectly...except:
Because the…

Ashley Norris
- 31
- 1
3
votes
1 answer
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 the selected item, I know bool…

nitrkli
- 369
- 1
- 4
- 7
3
votes
3 answers
How to add placeholder text to ToolStripTextBox?
In a WinForms project, I know how to add placeholder text to a regular textbox. But the ToolStripTextBox doesn't appear to be a regular textbox. For one, it doesn't expose the handle (which is what's required to set the placeholder text via Win…

AngryHacker
- 59,598
- 102
- 325
- 594
3
votes
3 answers
How can we highlight active menu-item on clicking menu strip item?
I am working on a desktop application in C# WinForms. I have used menustrip to navigate between different panels. The problem which I am facing is I cannot highlight the active color of the menustrip icon. A pictorial description will
explain…

Ezaz
- 183
- 1
- 11
3
votes
1 answer
ToolStripDropDownButton equivalent in WPF?
I'm very newbie to the WPF technology. I've been developing in WinForms for around 6 years.
Now I would like to advance one big step in my skills by learning WPF. I'm reading the introduction guides in MSDN, while as a personal exercise I'm trying…

ElektroStudios
- 19,105
- 33
- 200
- 417
3
votes
1 answer
Unable to add checkbox to ToolStrip
I want to add some checkboxes along with standard toolstrip controls in my C# winform. There is no issue with standard controls provided by toolstrip but problem with my checkbox. In toolstrip, the first control is combobox(toolstrip combobox),…

user7588316
- 77
- 1
- 5