RadioDld.Status.SetProgressBarValue_FormThread C# (CSharp) Method

SetProgressBarValue_FormThread() private method

private SetProgressBarValue_FormThread ( int value ) : void
value int
return void
        private void SetProgressBarValue_FormThread(int value)
        {
            this.Progress.Value = value;

            if (OsUtils.WinSevenOrLater() && this.IsHandleCreated)
            {
                this.tbarNotif.SetProgressValue(this, value, this.Progress.Maximum);
            }
        }