C # Cross-threading operation is invalid

Source: Internet
Author: User

The reason for this error is that the control is created by the main thread and is blocked while another is operating, preventing arbitrary tampering between the data.

If you must work across threads, such as a progress bar or status display, there are three basic ways to solve it:

1, Control.checkforillegalcrossthreadcalls = false;
Add this sentence in the Form_Load can let the program do not check whether cross-threading access, and naturally will not error. But from its meaning can also be seen, this is not reliable, so not very recommended.

2. Use delegate and invoke to invoke controls from other threads

3. Using BackgroundWorker Components

This is the system provided to us, but also recommended to use a method of comparison!

C # Cross-threading operation is invalid

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.