DataGridView 的cell赋值没有线程间访问的限制吗?

1、如下代码,对DataGridView 的cell赋值不会出现线程访问问题,为什么呢?
        public Form1()
        {
            InitializeComponent();
             
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
            Thread t = new Thread(new ThreadStart(() =>
            {
                //dataGridView1.Rows[0].Cells[0].Value = "1"; //不会出错    
                label1.Text = "2";//出错 线程间操作无效: 从不是创建控件“label1”的线程访问它。
            }));
            t.Start();
        }
原文地址:https://www.cnblogs.com/xm_cpppp/p/3620042.html