別のスレッドでウィンドウの背景を変更したいだけです。2つのプログラムがあります。1つは正しく動作し、もう1つはInvalidOperationExceptionをスローします。
正しいコード:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
Thread t = new Thread(new ParameterizedThreadStart(threadTest));
t.Start(@"C:\Users\Public\Pictures\Sample Pictures\Chrysanthemum.jpg");
}
void threadTest(object obj)
{
string path = obj as string;
this.Dispatcher.Invoke(new Func<object>(() => this.Background = new
}
}
エラーコード:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
Thread t = new Thread(new ParameterizedThreadStart(threadTest));
t.Start(@"C:\Users\Public\Pictures\Sample Pictures\Chrysanthemum.jpg");
}
void threadTest(object obj)
{
string path = obj as string;
//this.Dispatcher.Invoke(new Func<object>(() => this.Background = new ImageBrush(new BitmapImage(new Uri(path)))));
ImageBrush background = new ImageBrush(new BitmapImage(new Uri(path)));
this.Dispatcher.Invoke(new Func<object>(() => this.Background = background));
}
}
これらのコードの違いは、エラーコードが子スレッドにImageBrushオブジェクトを作成することです。だから私の質問は次のとおりです:wpfプログラムでは、スレッドは独自のスレッドによって作成されたオブジェクトのみを使用できますか?返信ありがとうございます。