C# winfrom 窗体间传值
在C#winfrom中,From1中有两个字符串(stringstr1;stringstr2;)在From2中有Textbox1和Textbox2,如何通过点From1中...
在C# winfrom 中,From1 中有两个字符串 (string str1;string str2;) 在From2 中有 Textbox1 和 Textbox2, 如何通过点 From1 中的 button1 将str1 和 str2 传到 From2 中的 Textbox1 和 Textbox2中.麻烦给个详细代码吧,不胜感激!!!
一楼的值传不过去,是否测试过哟?? 展开
一楼的值传不过去,是否测试过哟?? 展开
3个回答
展开全部
其实你可以通过构造器来接收 参数代码如下很好理解
from1
==================================
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string a = textBox1.Text;
string b = textBox2.Text;
Form2 f2 = new Form2(a, b);
f2.ShowDialog();
}
}
}
==================================
from2
==================================
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form2 : Form
{
private string a;
private string b;
public Form2(string a,string b)
{
this.a = a;
this.b = b;
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
label1.Text = a;
label2.Text = b;
}
}
}
from1
==================================
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string a = textBox1.Text;
string b = textBox2.Text;
Form2 f2 = new Form2(a, b);
f2.ShowDialog();
}
}
}
==================================
from2
==================================
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace WindowsFormsApplication1
{
public partial class Form2 : Form
{
private string a;
private string b;
public Form2(string a,string b)
{
this.a = a;
this.b = b;
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
label1.Text = a;
label2.Text = b;
}
}
}
展开全部
定义一个类如DBHelper.cs
写上public static string m;
public static string n;
在form1中m=str1;n=str2
在form2中button1的单击事件中Textbox1.text=m;
Textbox2.text=n;
即可
写上public static string m;
public static string n;
在form1中m=str1;n=str2
在form2中button1的单击事件中Textbox1.text=m;
Textbox2.text=n;
即可
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
我看可以在from1中声明静态变量为str1,str2
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询