Trying to mix graphical & textual buttons on a ToolBar

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I've added a toolbar to my WinForms app and would like to have standard
graphical buttons for the standard things (ie. New, Open, Close, Save, etc.)
But I have a less well known featured called "Publish". Ideally what I'd
like is to have a wider toolbar button that just spells out "Publish".

Is there any way to do this?
 
If you're using the ToolStrip control from .net 2.0 then create the button on
the toolstrip and change its DisplayStyle property to Text instead of Image.
 
Back
Top