SafeInvoke
时间:2011-06-01 来源:binfire
public static class ControlExtention
{
public delegate void InvokeHandler();
public static void SafeInvoke(this Control control, InvokeHandler handler)
{
if (control.InvokeRequired)
{
control.Invoke(handler);
}
else
{
handler();
}
}
}
相关阅读 更多 +