C#Numeric textbox更改语言后显示异常从“En-Us”到“控制”面板中的“任何全局语言”

时间:2012-10-22 09:16:13

标签: c# localization type-conversion numeric-textbox

我创建了一个包含两个数字文本框的应用程序,我已经为其添加了StartValue属性。

实施例

public decimal SValue {
  get { return MValue; }
  set { MValue = value; }
}

然后

const string VALUE = "1.000";
private NumericTextBox sVal;

问题来到这里

sVal.StartValue = Convert.ToDecimal(VALUE);

我将控制面板中的语言从EN-US更改为我的应用程序挂起的任何全局语言。

0 个答案:

没有答案