public void HandleEvent(object sender, PluginCore.NotifyEvent e, PluginCore.HandlingPriority priority) { switch (e.Type) { case EventType.Trace: ProcessTraces(); ui.EndUpdate(); break; } }
public void HandleEvent(object sender, NotifyEvent e, HandlingPriority priority) { switch (e.Type) { case EventType.ProcessStart: ui.BeginUpdate(); break; case EventType.ProcessEnd: ui.EndUpdate(); break; } }