子线程获取父线程ui的数据

来源:互联网 发布:美国数据分析专业排名 编辑:程序博客网 时间:2024/04/29 06:02

private string GetComboboxText()

 {

           return  this.Invoke(new Func<string>(() => { return this.comboBox1.Text; })).ToString();
            
        }
原创粉丝点击