Does anyone know how I can move the 'Split' portion of a ToolStripSplitButton to the bottom of the button instead of the side?
Asked
Active
Viewed 547 times
1 Answers
0
I think that this does not work by default. I guess you'd have to create your own ToolStripItem class.

Thorsten Dittmar
- 55,956
- 8
- 91
- 139
-
I have tried creating a class derived from ToolStripSplitButton, and can't seem to find the correct overrides to pull this off. I am hoping not to have to go all the way down to the ToolStripItem level, but I guess maybe that is the only option here. – Matt Jun 17 '09 at 14:59
-
1Well, I'm not sure. Probably you'll have to override the painting/mouse handling routines only? If all else fails, there's always .NET Reflector to inspect the code for ToolStripSplitButton ;-) – Thorsten Dittmar Jun 17 '09 at 15:25