Uppercase vs. UpperCase

XamlParseException occurred: The property ‘VerticalGridlinesBrush’ was not found in type ‘System.Windows.Controls.DataGrid’. [Line: 19 Position: 30] Took me 30 minutes to see that <Setter Property="VerticalGridlinesBrush">     <Setter.Value>         <SolidColorBrush Color="#FFACACAC"/>     </Setter.Value> </Setter> should be <Setter Property="VerticalGridLinesBrush">     <Setter.Value>         <SolidColorBrush Color="#FFACACAC"/>     </Setter.Value> </Setter> Next time I need to hit ctrl+space sooner…

devenv.exe.config

While trying to compile a demo Silverlight application, I ran into this build error: System.NotSupportedException: An attempt was made to load an assembly from a network location which would have caused the assembly to be sandboxed in previous versions of the .NET Framework. This release of the .NET Framework does not enable CAS policy by […]