gpt4 book ai didi

c# - 如何将文本框文本添加到标签和处理事件处理程序

转载 作者:太空宇宙 更新时间:2023-11-03 15:12:06 28 4
gpt4 key购买 nike

我在不同的面板中有 4 个文本框和 3 个不同的标签。我的工作是当我单击任何标签时,应将 4 个文本框文本分配给相应的标签。

我的代码如下

string srlnumber;
string micr;
string accnumber;
string tc;
string compltedata;



private void lblMicr1_Click(object sender, EventArgs e)
{

srlnumber = txtSerialnumber.Text;
micr = txtMicr.Text;
accnumber = txtAccounno.Text;
tc = txtTC.Text;
compltedata = "C" + srlnumber +"C"+ micr +"A"+ accnumber +""+ tc;
lblMicr1.Text = compltedata;

}

我的要求是,当我单击标签时,如果我在文本框中输入值,则必须将其分配给标签。但它没有发生。

谁能帮帮我

最佳答案

I assume that lblMicr1 is the label whose data you want to assign to textbox1.

protected void lblMicr1_Click(object sender, EventArgs e)
{

lblMicr1.Text = compltedata
TextBox1.Text = lblMicr1.Text;

}

或者

 this.MyTextBox.Text = this.MyLabel.Text;

use it , remember to declare label first and then textbox , so that textbox can use label data.

关于c# - 如何将文本框文本添加到标签和处理事件处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40713439/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com