AoMEngineLibrary.AMP.ProgressDialog.SetProgressText C# (CSharp) Метод

SetProgressText() публичный Метод

public SetProgressText ( string text ) : void
text string
Результат void
        public void SetProgressText(string text)
        {
            if (progressLabel.InvokeRequired)
            {
                progressLabel.BeginInvoke(new Action(() =>
                {
                    progressLabel.Text = text;
                }));
            }
            else
            {
                progressLabel.Text = text;
            }
        }