Ever wondered how to switch between the Cider Designer's views (Designer and XAML) in Visual Studio 2008 using the keyboard?
Marco Goertz from the Cider team at Microsoft says that the command for this is the same command that opens the Cider Designer - 'View.ViewDesigner', which maps to Shift+F7 in the default C# keyboard layout.
For some reason, I have been unable to manually alter the key combination on that command, so I'll just stay with the default.
Sebastien Lambla wrote a cool post about how to correctly get notifications for the changes in dependency property values.
In a nutshell:
DependencyPropertyDescriptor prop = DependencyPropertyDescriptor.FromProperty(
MyType.MyDependencyProperty,
typeof(MyType));
prop.AddValueChanged(this, this.OnMyDependencyPropertyChanged);