WPF Threading

TL;DR

Learn how to handle multi-threading with ObservableCollection in WPF, including solutions for cross-thread collection binding and practical tips for .NET developers.

27 August 2008
Written by Martin Hinshelwood
1 minute read
Comments
Subscribe

I was having a problem getting multi threading working with the ObservableCollection, and struggled to find a solution. So I asked my friend Google and after a while it directed me to Kevin’s blog and specifically to his post on WPF Cross-Thread Collection Binding - Part 4 - The Grand Solution .

This is a fantastic article, that provided me with the exact solution I was looking for, so I perused his other articles and found many tips on Multi-Threading….

One to watch…

Technorati Tags: .NET  WPF

Comments
Subscribe

What to read next

Article Engineering Excellence

MVVM for Dummies

Explains the MVVM pattern in WPF and Silverlight, highlighting separation of concerns, code structure, and the roles of commanding, …

Read article
Article

Bug in ObservableCollection?

Explains issues using ObservableCollection with generic types in .NET, why errors occur, and discusses workarounds and limitations when …

Read article
Article Engineering Excellence

Wpf Drag & Drop behaviour

Explains how to implement flexible drag and drop in WPF using MVVM, with customisable drop behaviour and bindable options for ItemsControls, …

Read article
Article

Wpf Ninject Dojo: The Data Provider

Explains how to use a custom NinjectDataProvider in WPF to enable dependency injection for ViewModels, improving flexibility and design-time …

Read article