在使用
this.Invoke((MethodInvoker)delegate
{
this.PicScreenProtection.Refresh();
});
的地方改为:
if (this.IsHandleCreated)
{
this.Invoke((MethodInvoker)delegate
{
this.PicScreenProtection.Refresh();
});
}