C#中有两个窗体,窗体2调用窗体1中的TextBox的内容
请问哪位仁兄知道:C#中有两个窗体,窗体1中有两个TextBox,需要在窗体2中调用1的TextBox中输入的内容,怎么写程序?谢谢...
请问哪位仁兄知道:C#中有两个窗体,窗体1中有两个TextBox,需要在窗体2中调用1的TextBox中输入的内容,怎么写程序?谢谢
展开
展开全部
form1窗体 一个textbox 一个按钮
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string tt = textBox1.Text;
Form2 f2 = new Form2(tt);
f2.Show();
}
}
}
form2 窗体 一个label1 显示form1中textbox1中的内容
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication5
{
public partial class Form2 : Form
{
public Form2(string tt)
{
InitializeComponent();
label1.Text = tt;
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication5
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string tt = textBox1.Text;
Form2 f2 = new Form2(tt);
f2.Show();
}
}
}
form2 窗体 一个label1 显示form1中textbox1中的内容
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace WindowsApplication5
{
public partial class Form2 : Form
{
public Form2(string tt)
{
InitializeComponent();
label1.Text = tt;
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
TableDI
2024-07-18 广告
2024-07-18 广告
在上海悉息信息科技有限公司,我们深知Excel在数据处理中的重要作用。在Excel中引用不同工作表(sheet)的数据是常见的操作,这有助于整合和分析跨多个工作表的信息。通过在工作表名称前加上感叹号“!”,您可以轻松地引用其他工作表中的数据...
点击进入详情页
本回答由TableDI提供
展开全部
窗体1 把自己通过某种方法把 自己 传到 窗体2中~
比如:
form1中
form2 f2 = new form2();
f2.show(this);
form2 中
public void show(form1 f1) { ......对这个传过来的f1你可以对其所有公开字段操作 }
比如:
form1中
form2 f2 = new form2();
f2.show(this);
form2 中
public void show(form1 f1) { ......对这个传过来的f1你可以对其所有公开字段操作 }
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
窗体一:
string ty=this.textBox1.Text.ToString();
Form f=new Form2(ty);
f.Show();
窗体二:
private string ro=this.lable1.text;
public Form2(string roo)
{
ro=roo;
}
sql语句会写吧?!
update。。。。。where name='"+ro+"'
string ty=this.textBox1.Text.ToString();
Form f=new Form2(ty);
f.Show();
窗体二:
private string ro=this.lable1.text;
public Form2(string roo)
{
ro=roo;
}
sql语句会写吧?!
update。。。。。where name='"+ro+"'
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
没办法直接调用,
只能说用一个全局变量
只能说用一个全局变量
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询