16 Ekim 2011 Pazar

delege

delegate void NotifyGenWindowDelegate();

private void NotifyGenWindow()

{

if (this.InvokeRequired)

{

BeginInvoke(new NotifyGenWindowDelegate(NotifyGenWindow));

}

else

{

MyUtil.NotifyGenWindow(this.Handle);

}

}