WPF Event: BitmapImage PropertyChanged: "Calling Thread Cannot access" - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T14:57:49Zhttp://stackoverflow.com/feeds/question/794882http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/794882/wpf-event-bitmapimage-propertychanged-calling-thread-cannot-access0WPF Event: BitmapImage PropertyChanged: "Calling Thread Cannot access"Jeffrey Knight2009-04-27T19:13:34Z2009-04-27T20:16:24Z
<p>I'm trying to understand what it is about the following code that <b>is</b> perfectly happy with loading a text file and displaying its contents, but <b>isn't</b> happy with loading a BitmapImage and displaying it on a timer.Elapsed event handler. </p>
<p>I understand it has to do with the UI thread. </p>
<p>But why is this not a problem for the textfile example?</p>
<p>First, the XAML:</p>
<pre><code><Window x:Class="WpfApplication7.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="Window1" Height="300" Width="300">
<StackPanel Orientation="Vertical">
<TextBlock Text="{Binding Path=Message, UpdateSourceTrigger=PropertyChanged}" FontSize="20" Height="40" Width="300" Background="AliceBlue" />
<Image Source="{Binding Path=Image,UpdateSourceTrigger=PropertyChanged}" Height="100" Width="100"/>
</StackPanel>
</Window>
</code></pre>
<p>and the C#, which raises a PropertyChangedEventHandler on a timer:</p>
<pre><code>using System;
using System.ComponentModel;
using System.Timers;
using System.Windows;
using System.IO;
using System.Windows.Threading;
using System.Windows.Media.Imaging;
</code></pre>
<p>and</p>
<pre><code>namespace WpfApplication7
{
public partial class Window1 : Window, INotifyPropertyChanged
{
public BitmapImage Image { get; private set; }
public string Message { get; set; }
public event PropertyChangedEventHandler PropertyChanged = delegate { };
private Timer timer;
public Window1()
{
InitializeComponent();
this.DataContext = this;
this.timer = new Timer { Enabled = true, Interval = 100 };
this.timer.Elapsed += (s, e) =>
{
//---happy loading from text file. UI updates :)
this.Message = File.ReadAllText(@"c:\windows\win.ini").Substring(0, 20);
PropertyChanged(this, new PropertyChangedEventArgs("Message"));
//---not happy loading a BitmapImage. PropertyChanged unhappy :(
// (Don't make me have to: ! )
//Application.Current.Dispatcher.Invoke(
//DispatcherPriority.Send, new Action(delegate
//{
this.Image = new BitmapImage(new Uri(@"C:\WINDOWS\Web\Wallpaper\Ascent.jpg"));
//Edit --Ah hah, thanks Daniel !
// DependencyObject-> Freezable-> Animatable->
// ImageSource-> BitmapSource-> BitmapImage
this.Image.Freeze(); //<--- this will fix it, no need for Dispatcher
//Without Dispatcher or Freeze() ... right here:
//"The calling thread cannot access this object because a different thread owns it."
PropertyChanged(this, new PropertyChangedEventArgs("Image"));
//}));
};
}
}
}
</code></pre>
<p>I know I can fix this with a "Application.Current.Dispatcher.Invoke". So fixing it isn't the problem. Not understanding why I should have to is the problem :)</p>
<p><i>Similar</i> questions</p>
<ul>
<li><p><a href="http://stackoverflow.com/questions/36748/asynchronously-loading-a-bitmapimage-in-c-using-wpf">http://stackoverflow.com/questions/36748/asynchronously-loading-a-bitmapimage-in-c-using-wpf</a></p></li>
<li><p><a href="http://stackoverflow.com/questions/590590/making-sure-onpropertychanged-is-called-on-ui-thread-in-mvvm-wpf-app">http://stackoverflow.com/questions/590590/making-sure-onpropertychanged-is-called-on-ui-thread-in-mvvm-wpf-app</a></p></li>
</ul>
http://stackoverflow.com/questions/794882/wpf-event-bitmapimage-propertychanged-calling-thread-cannot-access/795015#7950151Answer by Daniel Pratt for WPF Event: BitmapImage PropertyChanged: "Calling Thread Cannot access"Daniel Pratt2009-04-27T19:49:45Z2009-04-27T19:49:45Z<p>I think the critical difference between the two scenarios is that BitmapImage is a dependency object, which means it has the concept of an "owning" thread (the thread that created the object). When your main UI thread tries to access the BitmapImage object created on (and owned by) another thread...boom!</p>
<p>Strings, on the other hand, do not have a concept of an "owning" thread.</p>
http://stackoverflow.com/questions/794882/wpf-event-bitmapimage-propertychanged-calling-thread-cannot-access/795070#7950701Answer by Scott for WPF Event: BitmapImage PropertyChanged: "Calling Thread Cannot access"Scott2009-04-27T20:06:37Z2009-04-27T20:06:37Z<p>I think it's because BitmapImage are DispatchObject's; you are creating a DispatcherObject on the non-UI thread thus the exception. You don't see error with the text assignment since the text isn't a threaded object.</p>