WPF C # MessageBox non-blocking SplashScreen

Source: Internet
Author: User

In general, C # 's MessageBox.Show ("haha") is blocked by the current thread. We often use it to set up some judgment checkpoints.

Not all cases, however, can play a role in blocking the current thread.

For example, when WPF sets a splash screen transition splashscreen, you use MessageBox in the main form's construction method to not block the current thread.

I also have a smattering of reasons, I hope to understand the master can be written in the comments, help me to dispel doubts.

The code makes the following modifications, MessageBox can block the thread again:

if (!check ())
{
This. Cursor = Cursors.arrow;
System.Threading.Thread t = new System.Threading.Thread (() =>
{
MessageBox.Show ("Failed to load.") ");
});
T.setapartmentstate (System.Threading.ApartmentState.STA);/Set a single thread
T.start ();


Application.Current.Shutdown ();
}

Related Article

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.