111,095
社区成员




private void SetTooltip(PlayStatus pstatus, bool isSetStatus = true)
{
if (this.InvokeRequired)
{
this.Invoke((MethodInvoker)delegate { SetTooltip(pstatus); });
return;
}
.....
}
if (this.InvokeRequired) { this.Invoke((MethodInvoker)delegate { SetTooltip(pstatus); }); return; }