public void PerformAction(AppWorkspaceAction performMe) { Update(); using (new WaitCursorChanger(this)) { performMe.PerformAction(this); } Update(); }
public void PerformActionAsync(AppWorkspaceAction performMe) { this.BeginInvoke(new Procedure<AppWorkspaceAction>(PerformAction), new object[] { performMe }); }