Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Show text of a toolstrip

I would like to know how do I show the toolstrip text in a VB Form (from what option in preferences in Visual Studio 2010 ).

What I have is a toolstrip only with images and hovering the mouse i get the text set in toolstrip preferences.

I've tried setting the ShowItemTooltips option, but it seems that apply only for the hover mouse case.

Thanks in advance.

like image 394
luchosrock Avatar asked Jan 16 '13 13:01

luchosrock


1 Answers

Set the DisplayStyle for each ToolStripButton to ImageAndText.

like image 99
DCNYAM Avatar answered Sep 30 '22 12:09

DCNYAM