You can declare the Status field (suppose this is a Label) in Form1 like below:
public class Form1 : Form
{
private Label _statusLabel;
public static string Status
{
set
{
_statusLabel.Text = value;
}
}
}
Then you'll be able to set the status field from different forms like below:
Form1.Status = "PUT DESIRED STATUS HERE"
Edit:
You can find StatusStrip (System.Windows.Forms.StatusStrip) in the toolbox under "Menus & Toolbars" tab. After adding it to your form, you'll see a dropdown icon from where you have to add ToolStripStatusLabel (System.Windows.Forms.ToolStripStatusLabel). Then just rename the "_statusLabel" with the newly added one.
If you need further assistance, feel free to ask !