More Tired-ass WPF Notes…

I have just learned to appreciate DynamicResource after assuming I would never have to use it. This WPF declaration becomes necessary (for my work) when a centralizing Resource Dictionary, containing my ViewModel data sources, needs to be seen at design time (in Expression Blend) and run time. It follows that data contexts can be set like this:DataContext={DynamicResource MyViewModelKey} My previous technique was like this:DataContext={Binding Source={StaticResource MyViewModelKey}} Buy this book at Amazon.com! Comparing the two forms, gives me the chance to note that Binding.Source does not work with DynamicResource. The error messages thrown at me for this fact helped me to conclude incorrectly that DataContext cannot be set to DynamicResource. After a few experiments in Expression Blend it became clear to me that this is not the case.

Now the other stuff picked along the way, loosely related:

rasx()