private void InitializePhoneApplication() の app.xaml.cs で、私はこのコードを書きましたが、デフォルトの小数点区切り記号としてドットを使用する代わりに、引き続きコンマを使用しています。
CultureInfo customCulture = (System.Globalization.CultureInfo)System.Threading.Thread.CurrentThread.CurrentCulture.Clone();
customCulture.NumberFormat.NumberDecimalSeparator = ".";
System.Threading.Thread.CurrentThread.CurrentCulture = customCulture;
Thread.CurrentThread.CurrentUICulture = customCulture;