|
|
|
C# Win App ตั้งค่าเริ่มต้น TextBox กับ Format ยังไงครับ |
|
|
|
|
|
|
|
ลองดูครับ
Code (C#)
private void textBox1_KeyUp(object sender, KeyEventArgs e)
{
if (!string.IsNullOrEmpty(textBox1.Text))
{
System.Globalization.CultureInfo culture = new System.Globalization.CultureInfo("en-US");
int valueBefore = Int32.Parse(textBox1.Text, System.Globalization.NumberStyles.AllowThousands);
textBox1.Text = String.Format(culture, "{0:N0}", valueBefore);
textBox1.Select(textBox1.Text.Length, 0);
}
}
อ่านค่า (C#)
int integerValue = Int32.Parse(textBox1.Text, System.Globalization.NumberStyles.AllowThousands);
|
|
|
|
|
Date :
2013-08-11 06:36:03 |
By :
mr.win |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
อยากให้แสดงจุดทศนิยมสองหลักตลอดด้วย ทำแบบไหนครับ ขอบคุณมากจ้า
|
|
|
|
|
Date :
2013-08-11 16:08:59 |
By :
100 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 01
|