Exemplo n.º 1
0
        public void RefreshText()
        {
            SetLogText d = new SetLogText(UpdateLogText);

            if (this.txtBoxLog.InvokeRequired)
            {
                this.Invoke(d);
            }
            else
            {
                d();
            }
        }