イメージを非同期にロードしようとしています。async load C#のBitmapImage
メイン・ウィンドウコード
public partial class MainWindow : Window
{
private Data data = new Data();
public MainWindow()
{
InitializeComponent();
this.DataContext = data;
}
private async void button_Click(object sender, RoutedEventArgs e)
{
data.Image = await Data.GetNewImageAsync();
}
}
データクラス
public class Data : INotifyPropertyChanged
{
private BitmapImage _Image = new BitmapImage();
public BitmapImage Image { get { return _Image; } set { _Image = value; OnPropertyChanged("Image"); } }
public static BitmapImage GetNewImage()
{
return new BitmapImage(new Uri("http://www.diseno-art.com/news_content/wp-content/uploads/2012/09/2013-Jaguar-F-Type-1.jpg"));
}
public async static Task<BitmapImage> GetNewImageAsync()
{
return await Task.Run(() => GetNewImage());
}
public event PropertyChangedEventHandler PropertyChanged;
public void OnPropertyChanged(string propertyName)
{
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
}
}
WPFコード
<Button Name="button" Click="button_Click">Image</Button>
<Image Grid.Row="1" Source="{Binding Path=Image, UpdateSourceTrigger=PropertyChanged}"></Image>
問題
は、私は例外を取得:
System.ArgumentExceptionの: "DependencyObjectのと同じスレッド にDependencySourceを作成する必要があります"この行の
...: PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
しかし、私は、文字列へのBitmapImageを変更した場合、このコードは正常に動作します。
私は間違っていますか?
注:Image Bindingに 'UpdateSourceTrigger = PropertyChanged'を設定するのは無意味です。 TwoWayとOneWayToSourceのバインディングにのみ影響します。 – Clemens