在C#.NET中如何实现在文本框中输入内容的同时在label中显示出来,并且lab...
发布网友
发布时间:2024-10-23 11:41
我来回答
共5个回答
热心网友
时间:2024-12-07 16:10
不知道你想干什么,先写一段代码,有什么疑问在说。
private string[] NUM = new string[] { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "百" };
private void textBox1_TextChanged(object sender, EventArgs e)
{
int input = int.Parse(textBox1.Text==""?"0":textBox1.Text);
string label = "";
if (input >= 100)
{
label += NUM[(input % 1000) / 100] + NUM[11];
}
if (input >= 10 && input % 100 / 10 != 0)
{
label += NUM[(input % 100) / 10] + NUM[10];
}
else if (input >= 10 && input % 100 / 10 == 0 && input % 10 != 0)
{
label += NUM[0];
}
if (input == 0)
{
label = NUM[0];
}
else if (input % 10 != 0)
{
label += NUM[input % 10];
}
label1.Text = label;
}
热心网友
时间:2024-12-07 16:15
int ggg = int.Parse("123");
string bbb="";
if((ggg/100)!=0)
{
bbb+=turn(ggg/100)+"百";
ggg=ggg%100;
}
if((ggg/10)!=0)
{
bbb+=turn(ggg/10)+"十";
ggg=ggg%10;
}
if(ggg!=0)
{
bbb+=turn(ggg/10);
}
、、、、、、、、、、、、、、、、、、、、
string turn(int i)
{
switch(i)
{
case 1:
return "一";
case 2:
return "二";
..
..
..
..
..
..
default:
return "久";
}
}
热心网友
时间:2024-12-07 16:08
这个很简单啊判断下就OK了,switch case 然后再判断下这个数是各位还是十位还是百位然后输出就可以了
热心网友
时间:2024-12-07 16:16
在文本中输入123 获取文本的Change 事件.进行文本框中字符串转成Char类型的数组.在循环遍历通过switch case 去匹配.把最终匹配的结果交给label就行了!
热心网友
时间:2024-12-07 16:14
<script type="text/javascript">
function show()
{
var arr=new Array('零','一','二','三','四','五','六','七','八','九');
var inputValue=document.all['txt_num'].value;
for(var i=0;i<=inputValue.length;i++)
{
inputValue=inputValue.replace(i,arr[i]);
}
document.all['msg'].innerText=inputValue;
}
</script>
<body>
<input type="text" id="txt_num" onkeyup="show();"/><br/>
<span id="msg"></span>
</body>
热心网友
时间:2024-12-07 16:14
不知道你想干什么,先写一段代码,有什么疑问在说。
private string[] NUM = new string[] { "零", "一", "二", "三", "四", "五", "六", "七", "八", "九", "十", "百" };
private void textBox1_TextChanged(object sender, EventArgs e)
{
int input = int.Parse(textBox1.Text==""?"0":textBox1.Text);
string label = "";
if (input >= 100)
{
label += NUM[(input % 1000) / 100] + NUM[11];
}
if (input >= 10 && input % 100 / 10 != 0)
{
label += NUM[(input % 100) / 10] + NUM[10];
}
else if (input >= 10 && input % 100 / 10 == 0 && input % 10 != 0)
{
label += NUM[0];
}
if (input == 0)
{
label = NUM[0];
}
else if (input % 10 != 0)
{
label += NUM[input % 10];
}
label1.Text = label;
}
热心网友
时间:2024-12-07 16:12
<script type="text/javascript">
function show()
{
var arr=new Array('零','一','二','三','四','五','六','七','八','九');
var inputValue=document.all['txt_num'].value;
for(var i=0;i<=inputValue.length;i++)
{
inputValue=inputValue.replace(i,arr[i]);
}
document.all['msg'].innerText=inputValue;
}
</script>
<body>
<input type="text" id="txt_num" onkeyup="show();"/><br/>
<span id="msg"></span>
</body>
热心网友
时间:2024-12-07 16:09
int ggg = int.Parse("123");
string bbb="";
if((ggg/100)!=0)
{
bbb+=turn(ggg/100)+"百";
ggg=ggg%100;
}
if((ggg/10)!=0)
{
bbb+=turn(ggg/10)+"十";
ggg=ggg%10;
}
if(ggg!=0)
{
bbb+=turn(ggg/10);
}
、、、、、、、、、、、、、、、、、、、、
string turn(int i)
{
switch(i)
{
case 1:
return "一";
case 2:
return "二";
..
..
..
..
..
..
default:
return "久";
}
}
热心网友
时间:2024-12-07 16:17
在文本中输入123 获取文本的Change 事件.进行文本框中字符串转成Char类型的数组.在循环遍历通过switch case 去匹配.把最终匹配的结果交给label就行了!
热心网友
时间:2024-12-07 16:10
这个很简单啊判断下就OK了,switch case 然后再判断下这个数是各位还是十位还是百位然后输出就可以了