Compact Framework/Threading - MessageBox displays over other controls after option is chosen
- 阅读更多 关于 Compact Framework/Threading - MessageBox displays over other controls after option is chosen
问题 I'm working on an app that grabs and installs a bunch of updates off an an external server, and need some help with threading. The user follows this process: Clicks button Method checks for updates, count is returned. If greater than 0, then ask the user if they want to install using MessageBox.Show(). If yes, it runs through a loop and call BeginInvoke() on the run() method of each update to run it in the background. My update class has some events that are used to update a progress bar etc.