I am trying to insert an image into a StripStatusLabel, but for some reason it is not displayed on the left side, like a StripMenuItem.
Inserts are being made in the same way:
Dim test As New ToolStripStatusLabel ("Teste")
Dim exiting As New ToolStripMenuItem ("Sair")
test.Image = My.Resources.Test
exiting.Image = My.Resources.Sair
ContextMenuStrip.Items.Insert (0, test)
ContextMenuStrip.Items.Insert (1, exiting)