I have multiple forms that popup during an intensive operation. For example, when a form popups asking user for something, and the user clicks OK, the form’s graphics stay on the main screen, even though it is closed. How can I make it so that these graphics disappear completely?
I have multiple forms that popup during an intensive operation. For example, when a
Share
I would recommend performing the heavy work in the background (using a
BackgroundWorkerfor instance), so that the GUI thread is not blocked. That way, the forms will be able to peform screen updates while the work is going on.