📅  最后修改于: 2022-03-11 14:49:08.688000             🧑  作者: Mango
private void ShowContentThreadSafe(int level)
{
if (UcView.TreeList.InvokeRequired)
{
UcView.TreeList?.Invoke(new Action1(a => ShowContent(level)));
}
else
ShowContent(level);
}