views:

976

answers:

1

I'm trying to put a plain image on a System.Windows.Forms.StatusStrip control (Visual Studio 2008, C# .Net 3.5).

I remember being able to do it quite easily in earlier framework versions, but for some reason the only controls made available to me from this new StatusStrip are a StatusLabel, a ProgressBar, a DropDownButton, and a SplitButton.

I'm using the SplitButton control at the moment as it lets me include an image, but it's obviously not ideal as it has the menu dropdown attached to it.

Is there a way I can add a plain image to this StatusStrip control? Should I be using a different Windows Forms control?

+3  A: 

Add StatusLabel controls and use the Image property.

Peter Lillevold
Ok, so StatusLabel isn't just a label? Thanks for that, I'll give it a try.
Damovisa
No, "label" in this context is quite broad :)
Peter Lillevold