A previous post of mine shows several options how to debug wpf bindings. Here’s another way to output the changed property (together with its new value). We’re using a custom PropertyChangedCallback that outputs some info. public static readonly DependencyProperty SomePropertyProperty = DependencyProperty.Register(“SomeProperty”, typeof(string), typeof(Window1), new UIPropertyMetadata(BindingDebugger())); public static PropertyChangedCallback BindingDebugger() { // output the debugging info } [...]
Archive for March, 2010
Top 10 Treats in Entity Framework 4
In this video, the biggest expert on EF informs you about the most important new stuff in Entity Framework 4 (in NetFx 4) Great high-level demo’s of cool new features: Designer improvements Foreign Keys New code generation Support for simpler classes Change tracking for WCF Better n-tier support Lazy loading Code only development Must see!
Reading .chm files
By default, I can’t view the contents of downloaded .chm files on my windows 7 pc. At first, I though the .chm file itself was broken, but after having this problem with other helpfiles, it was clear it was something in my os/software. Windows (at least 7), considers the files downloaded from another computer as [...]