方法
Action act = () =>
{
jinTouControl1.SetAudioZoom(value);
};
if (jinTouControl1.InvokeRequired)
{
Invoke(act);
}
else
{
act();
}