Setting ToolStripSplitButton.DropDownButtonWidth to 0

I want to use ToolStripSplitButtononly as a button (without a drop down menu) in StatusStrip.

For this reason, I do not want to display a small arrow, but I cannot do this.

Tried this by setting ToolStripSplitButton.DropDownButtonWidthto 0, and it works successfully on Windows 7, but not on Windows XP.

How to get rid of a small arrow?

+5
source share
1 answer

Use ToolStripDropDownButton instead of ToolStripSplitButton. ToolStripDropDownButton has a ShowDropDownArrow property that allows you to hide the down arrow.

+6
source

All Articles