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中.麻烦给个详细代码吧,不胜感激!!!
一楼的值传不过去,是否测试过哟??
展开
 我来答
ytychj
2009-02-20 · TA获得超过140个赞
知道答主
回答量:53
采纳率:0%
帮助的人:0
展开全部
其实你可以通过构造器来接收 参数代码如下很好理解

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;
}
}
}
永恒_風
2009-02-21 · TA获得超过127个赞
知道小有建树答主
回答量:189
采纳率:0%
帮助的人:131万
展开全部
定义一个类如DBHelper.cs
写上public static string m;
public static string n;
在form1中m=str1;n=str2
在form2中button1的单击事件中Textbox1.text=m;
Textbox2.text=n;
即可
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
loveme_lsp
2009-02-21
知道答主
回答量:1
采纳率:0%
帮助的人:0
展开全部
我看可以在from1中声明静态变量为str1,str2
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式