我正在使用一个事件来通知我的应用程序的处理进度。但是当我更新标签或进度时,在调试更新代码的同时没有任何更新被执行
//update label
void MUpdate_UpdateNotification(string Message)
{
lblState.Invoke(UpdateLib.Notification.LabelDelegate, new object[] { lblState, Message });
}
//delegate
public static LabeleAppendHandler LabelDelegate = new LabeleAppendHandler(UpdateLabel);
private static void UpdateLabel(System.Windows.Forms.Label lbl, string msg)
{
lbl.Text = msg;
}
//how excute event
if (UpdateNotification!=null)
UpdateNotification(Notification.GetNextStatus());