试试下面的方法:
foreach (object item in this.statusStrip1.Items)
{
if (item.GetType().Name == "ToolStripStatusLabel")
{
string text = ((ToolStripStatusLabel)item).Text;
MessageBox.Show(text);
}
}