为“显示”按钮编写“单击”(Click)事件处理代码,实现在TextBox中显示所填与所选信息(效果如下图所示)

如题所述

第1个回答  2013-09-14
private void button1_Click(object sender, EventArgs e)
{
string a="";
string b="";
if (radioButton1.Checked)
{
a = "男";
}
else {
a = "女";
}
if (checkBox1.Checked) {
b = b + checkBox1.Text;
}
if (checkBox2.Checked)
{
b = b + checkBox2.Text;
}
if (checkBox3.Checked)
{
b = b + checkBox3.Text;
}
if (checkBox4.Checked)
{
b = b + checkBox4.Text;
}
textBox3.Text = "姓名" + textBox1.Text + "班级" + textBox2.Text + "性别" + a + "爱好" + b;
}本回答被提问者和网友采纳
第2个回答  2013-09-14
// 姓名
TextBox uname = new TextBox();
uname.Text = "zhangsan";

// 班级
TextBox uclass = new TextBox();
uclass.Text = "073361";

// 性别
RadioButton usex = new RadioButton();
usex.Text = "男";
RadioButton usext = new RadioButton();
usext.Text = "女";

// 爱好
CheckBox ulove = new CheckBox();
ulove.Text = "爱好1";
CheckBox ulove1 = new CheckBox();
ulove1.Text = "爱好2";
CheckBox ulove2 = new CheckBox();
ulove2.Text = "爱好3";
CheckBox ulove3 = new CheckBox();
ulove3.Text = "爱好4";

// 显示
Button Show = new Button();
Show.Text = "显示";
Show.Click += new EventHandler(ShowClick);

// 显示结果
TextBox ShowText = new TextBox();

// 你想要的方法
private void ShowClick(object sender, EventArgs e)
{
ShowText.Text =
"姓名为:" + uname.Text
+ " 班级为:" + uclass.Text
+ " 性别为:";
if (usex.CanSelect == true)
ShowText.Text += usext.Text;
else
ShowText.Text += ulove.Text;
ShowText.Text += " 爱好为:";
if (ulove.Checked == true) ShowText.Text += ulove.Text;
if (ulove1.Checked == true) ShowText.Text += ulove1.Text;
if (ulove2.Checked == true) ShowText.Text += ulove2.Text;
if (ulove3.Checked == true) ShowText.Text += ulove3.Text;
}
第3个回答  2013-09-14
你保证是弄错了

怎么用c#做一个按钮,点击它使label显示textbox中输入的内容?
假设你已经使用Visual Studio的设计器在Form上放置了label、Textbox、Button这几个控件,那么在设计器中双击按钮,IDE会自动添加点击按钮后要执行的事件处理函数。private void button1_Click(object sender, EventArgs e){ label1.Text = textBox1.Text;} ...

...触发textbox?就是点一下button再显示textbox中的内容,不点不显示...
嗯。。跟你那界面很相似的。。如果选中了情况1,并按了执行。则文本框显示“是情况1 出问题了” 如果选中了情况2,并执行了。。则显示“是情况2 出问题了” 。如果没按执行,是不会有字的喔。。按钮的代码如下:private void button1_Click(object sender, EventArgs e){ if (radioButton1.Chec...

如何实现在vb中的textbox中输入一串数字,点击按钮,使得barcode控件显示...
首先在Barcode控件属性里选择你要的打印的条形码类型,是选EAN-13,还是选其它。 看传上的图片。然后在按钮中添加如下代码:Sub Command1_Click()Me.BarCodeCtrl1.Value = trim(Me.Textbox1.text)End sub

vba 怎么实现在excel中搜索窗体textbox中的内容
功能描述如下,如附件中frame图所示,在textbox中输入一个人名,实时在一个表格(如附件表格图所示)中搜索此人名,并将搜索结果放到frame中的listbox中,搜索结果包括姓名,班级,性别。实时显示就是在textbox中输入后马上执行搜索并显示的任务,应该是在textbox的change方法中写代码。根据textbox1里的值...

...box接受输入一个计算按钮一个显示结果的textbox)
private System.Windows.Forms.TextBox txtExp; private System.Windows.Forms.Button btn1; private System.Windows.Forms.Button btnReverse; private System.Windows.Forms.Button btnDot; private System.Windows.Forms.Button btn0; private System.Windows.Forms.Button btn9; private System.Windows.Forms.Button ...

...一个按钮的事件, 实现将多个的lable,textbox中的内容保存到本地磁盘...
用文件流,先把label,textbox的内容组合成字符串,然后写到文件中保存到本地磁盘

C#中怎样在textbox中输出结果?
将textboxName.text存储到一个变量中:例如变量名字叫str在点击按钮的事件中写str+=textboxName.text,然后将str赋值给textBoxOutput.Text就Ok了!

Excel VBA 利用TextBox编辑ListView数据完整代码
在用户窗体中,定义了更新按钮的事件处理函数,将TextBox的值更新到ListView。TextBox以数字结尾命名,与ListView的表头一一对应,简化了数据更新逻辑。同时,实现了ListView的ItemClick事件处理,当用户点击ListView的某一项时,将值写入对应的TextBox,并改变字体颜色,以标识当前被操作的记录。窗体初始化事件中...

...当验证一个textBox的输入内容,然后弹出提示信息,如下图: 请问各位...
private void button1_Click(object sender, EventArgs e){ if (textBox1.Text.ToString().Trim() == ""){ MessageBox.Show("您还没有填写软件名称!", "系统提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);textBox1.Focus();} } 单击按钮之后,对文本框进行判断,如果为空,就弹出一...

ASP.NET课程怎样点下button按钮然后让textbox里输入的内容显示在lable...
在按钮上双击,然后再生成的事件代码中写上Label1.Text = TextBox1.Text; Label1为lable的name,TextBox1为textbox的name

相似回答