我正在尝试将图像插入StripStatusLabel,但由于某种原因,它不会显示在左侧,就像StripMenuItem一样。
插件的制作方式相同:
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)