Omer van Kloeten's .NET Zen

Programming is life, the rest is mere details

News

Note: This blog has moved to omervk.wordpress.com.

Omer van Kloeten's Facebook profile

Omer has been professionally developing applications over the past 8 years, both at the IDF’s IT corps and later at the Sela Technology Center, but has had the programming bug ever since he can remember himself.
As a senior developer at NuConomy, a leading web analytics and advertising startup, he leads a wide range of technologies for its flagship products.

Get Firefox


powered by Dapper 

.NET Resources

Articles :: CodeDom

Articles :: nGineer

Culture

Projects

September 2007 - Posts

WPF Designer Tip: Keyboard Shortcut

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.

Registering to a DependencyProperty's Change Event

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);

 

More Posts