WPF MVVM Busy Message With Ambient Context
Every .NET developer has already used an Ambient Context without knowing it. A typical Ambient Context is: using (var tx = new TransactionScope()) { …. } The pattern is not very well known. Here is one good description I found: The Wandering Glitch – Ambient Context I found this pattern very useful for displaying progress/busy… Read More »