我想在每個3位數組後添加「,」。例如:當我輸入123456789文本框將顯示123,456,789和我此代碼得到它:帶小數點的文本框顯示格式化
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
if (!string.IsNullOrEmpty(textBox1.Text))
{
System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("en-US");
decimal valueBefore = decimal.Parse(textBox1.Text, System.Globalization.NumberStyles.AllowThousands);
textBox1.Text = String.Format(culture, "{0:N0}", valueBefore);
textBox1.Select(textBox1.Text.Length, 0);
}
}
我想這種格式更加具體。我只想爲這個文本框鍵入數字和使用十進制格式(類型之後。)像123,456,789.00
,我嘗試使用此代碼:
private void textBox1_KeyPress(object sender, KeyPressEventArgs e)
{
if (!char.IsControl(e.KeyChar) && !char.IsDigit(e.KeyChar) && e.KeyChar != '.')
{
e.Handled = true;
}
}
,但它不工作
它是如何不工作?這裏的代碼實際上做了什麼?如果出現錯誤,請將其包括在內,如果出現錯誤輸出,請將其包括在內 – Sheena
我想加入他們兩個但我不知道該怎麼做。 – arilupus