Monday, March 31, 2008

Performance Counters

A quick and dirty way to add performance counters to your application.

Friday, March 21, 2008

Namespace problem in XAML

I had to do some changes to my XAML forms, and decided to use XmlDocument or DOM for it. The DOM works great when only updating existing elements but when adding new elements it insists on adding the xmlns="..." attribute to all my new elements.

Unfortunately according to this conversation it is the way it is, so I was forced to massage the xml using standard string parsing just after XmlDocument serialized my XAML form.