Hi, when restyling the Wpf Toolkit Datagrid I discovered that Expreesion Blend uses a Wpf Toolkit namespace in the [first] format:
xmlns:Custom="http://schemas.microsoft.com/wpf/2008/toolkit"
I've always used the namespace [second format]:
xmlns:WpfToolkit="clr-namespace:Microsoft.Windows.Controls;assembly=WpfToolkit"
They are different since substituting the second format into the Expression Blend restyling resulted in unknown tags, among other things.
Why are there two namespace formats? Is there a penalty for using the first format? Should I ever use the second format?
Thnaks, Graeme