GridViewColumnResize.cs:
Add this anywhere on top where all the lines are that start with "using":
using System.Globalization;
Replace line 149 with:
return double.TryParse(Width, NumberStyles.Number, CultureInfo.CreateSpecificCulture("en-US"), out result) ? result : -1;
Replace...