しばらく悩まされている問題があります。いくつかの解決策を試しましたが、うまくいきませんでした。
現金入力用のテキストボックスがあります(たとえば、$ 999,99)。ただし、「、」と「。」を自動的に入力する必要があります。値を正しく表示します。
私は2つの解決策を試しました。それらの1つはこれです:
private void tx_ValorUnidade_TextChanged(object sender, EventArgs e)
{
string value = tx_ValorUnidade.Text.Replace(",", "").Replace("R$", "");
decimal ul;
//Check we are indeed handling a number
if (decimal.TryParse(value, out ul))
{
//Unsub the event so we don't enter a loop
tx_ValorUnidade.TextChanged -= tx_ValorUnidade_TextChanged;
//Format the text as currency
tx_ValorUnidade.Text = string.Format(System.Globalization.CultureInfo.CreateSpecificCulture("pt-BR"), "{0:C2}", ul);
tx_ValorUnidade.TextChanged += tx_ValorUnidade_TextChanged;
}
}
しかし、結果は非常に奇妙です。
もう1つはこれです:
private void tx_ValorUnidade_KeyUp(object sender, KeyEventArgs e)
{
if (!string.IsNullOrEmpty(tx_ValorUnidade.Text))
{
System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("en-US");
int valueBefore = Int32.Parse(tx_ValorUnidade.Text, System.Globalization.NumberStyles.AllowThousands);
tx_ValorUnidade.Text = String.Format(culture, "{0:N0}", valueBefore);
tx_ValorUnidade.Select(tx_ValorUnidade.Text.Length, 0); *
}
}
これはちょっと機能しますが、問題があります: ユーザーが $10,00 のようなものを挿入したい場合、それはできません。また、5 桁の後にクラッシュします。
元の参照用に、ここで他の 質問から2つのコードを取得しました。
どうすれば修正できますか?例を間違って使用していますか? どんな考えでも大歓迎です。