请指教treeView1.Invoke
System.NullReferenceException: 未将对象引用设置到对象的实例。
private void PapulateTree(
Dictionary<string, ChamferChecker.Profile> profiles)
{
if (this.treeView1.InvokeRequired)
{
this.treeView1.Invoke(new Action(delegate
{
this.PapulateTree(profiles);
}));
return;