Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
你好在下面的代码中得到错误..
RefeshDataGridView() 方法是静态的。我在单独的线程中运行它以刷新网格并从 DB 表中获取最新数据。我将 dataGridView1 设为静态,因为方法 RefeshDataGridView() 使用它。谁能描述为什么会发生这个错误以及如何解决它?
更新:如果我使 dataGridView1 非静态,那么错误就消失了。但是我不能在静态方法中使用它。
我想 dataGridView1 是null. 您必须实例化它或将它的实例作为参数传递给 RefreshDataGridView()。
null