Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8295839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T14:44:52+00:00 2026-06-08T14:44:52+00:00

I get an invalid cross-thread access exception when trying to set an image using

  • 0

I get an “invalid cross-thread access” exception when trying to set an image using a BitmapImage instance created on a ThreadPool thread.

It turns out to avoid this I have to create the BitmapImage instance on the UI thread. But generating the BitmapImage is time-consuming (takes 100ms or even longer, here it is loaded from a file just for the purpose of demostration), that is why I want to do it on a ThreadPool thread.

If I instantiate the BitmapImage instance on the UI thread, and pass a reference to the ThreadPool thread to manipulate it (like setting pixels), I have to Marshal back to the UI thread to access the BitmapImage, that will freeze the UI thread and that is exactly what I am trying to avoid.

Suggestions?

    private void MainWindow_Loaded(object sender, RoutedEventArgs e)
    {
        ThreadPool.QueueUserWorkItem((o) =>
        {
            var bitmapImage = new BitmapImage(new Uri("default.jpg", UriKind.Relative));
            TryToSetImage(bitmapImage);
        });
    }

    private void TryToSetImage(object obj)
    {
        if (this.Dispatcher.CheckAccess())
        {
            //Exception: The calling thread cannot access this object because a different thread owns it.
            image1.Source = obj as BitmapImage; 
        }
        else
        {
            this.Dispatcher.Invoke(new WaitCallback(TryToSetImage),
                System.Windows.Threading.DispatcherPriority.Render,
                obj);
        }
    }
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-08T14:44:57+00:00Added an answer on June 8, 2026 at 2:44 pm

    You need to Freeze it after creating it to make accessible for other threads.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to get around a Cross Thread Exception, Invalid Object Exception. Here
I get the following exception java.lang.NumberFormatException: Invalid int: It is happening when you try
The following WMI query throws an exception at serverProtocolsManagement.Get() when sqlHost is an invalid
When using this code to remove duplicates I get invalid operands to binary expression
I want to redirect to home page if session get invalid. My spring-servlet.xml is
I've searched all over and tried everything but I still get: invalid multibyte char
when I seem to use parameters in my query, I get an error Invalid
I get The ORDER BY clause is invalid in views, inline functions, derived tables,
I get the following error when running the code below: invalid byte sequence in
I get error: ORA-06575: Package or function GET_CONC_NAMES is in an invalid state When

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.