Winform TextBox.Text 添加内容

定义委托:

delegate void ShowDelegate(string strshow); 

方法:

        public void TextBoxAppendStr(string strshow) 
        {
            if (textBox.InvokeRequired)
            {
                textBox.Invoke(new ShowDelegate(TextBoxAppendStr), strshow);
            }
            else 
            {
                textBox.Text += strshow;  
            }
        }

调用:

TextBoxAppendStr("已经停止虹膜特征提取\r\n");

 

上一篇:centos6.5\win7双系统安装配置


下一篇:CodeForces 593D【树链剖分】