我有一個名爲textBox1的文本框。隨着用戶類型:用逗號分隔數字,並將其格式化爲C#中的貨幣#
目標:只要用戶鍵入textBox1,我希望程序將數字轉換爲貨幣格式。
示例:如果用戶鍵入123456,我希望程序將數字123,456分開,如下所示。
我有一個名爲textBox1的文本框。隨着用戶類型:用逗號分隔數字,並將其格式化爲C#中的貨幣#
目標:只要用戶鍵入textBox1,我希望程序將數字轉換爲貨幣格式。
示例:如果用戶鍵入123456,我希望程序將數字123,456分開,如下所示。
經過研究,我發現了這段代碼。這段代碼正是我想要的。
private void form_3_Load(object sender, EventArgs e)
{
textBox1.Text = "$0.00";
}
private void textBox1_TextChanged(object sender, EventArgs e)
{
///
//Remove previous formatting, or the decimal check will fail including leading zeros
string value = textBox1.Text.Replace(",", "")
.Replace("$", "").Replace(".", "").TrimStart('0');
decimal ul;
//Check we are indeed handling a number
if (decimal.TryParse(value, out ul))
{
ul /= 100;
//Unsub the event so we don't enter a loop
textBox1.TextChanged -= textBox1_TextChanged;
//Format the text as currency
textBox1.Text = string.Format(CultureInfo.CreateSpecificCulture("en-US"), "{0:C2}", ul);
textBox1.TextChanged += textBox1_TextChanged;
textBox1.Select(textBox1.Text.Length, 0);
}
bool goodToGo = TextisValid(textBox1.Text);
btn_test.Enabled = goodToGo;
if (!goodToGo)
{
textBox1.Text = "$0.00";
textBox1.Select(textBox1.Text.Length, 0);
}
///
}
private bool TextisValid(string text)
{
Regex money = new Regex(@"^\$(\d{1,3}(\,\d{3})*|(\d+))(\.\d{2})?$");
return money.IsMatch(text);
}
void tb_TextChanged(object sender, EventArgs e)
{
//Remove previous formatting, or the decimal check will fail
string value = textBox1.Text.Replace(",", "").Replace("$", "");
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
textBox1.TextChanged -= tb_TextChanged;
//Format the text as currency
textBox1.Text = string.Format(CultureInfo.CreateSpecificCulture("en-US"), "{0:C2}", ul);
textBox1.TextChanged += tb_TextChanged;
}
}
下面是基本方法,當文本改變其轉換爲十進制,然後將文本更改爲十進制的字符串表示。
textBox1.TextChanged += (s,e) =>
{
var value = Decimal.Parse(textBox1.Text);
textBox1.Text = value.ToString("C");
}
您還應該檢查文本框中的非法數字。看看Decimal.TryParse
。
的String.Format( 「{0:C}」,decimalvalue)的按鍵事件 –
感謝您的答覆,我還是新。我將如何編程。 @sumeetkumar – taji01