MainForm.UpdateLabel C# (CSharp) Method

UpdateLabel() public method

public UpdateLabel ( string text ) : void
text string
return void
	void UpdateLabel (string text)
	{
		if (_label.InvokeRequired)
			Invoke (new UpdateLabelCallback (UpdateLabel), text);
		else
			_label.Text = text;
	}
MainForm