C# form2如何用form1中的数据
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# form2如何用form1中的数据相关的知识,希望对你有一定的参考价值。
分为两个步骤:1:是form1的数据传递到form2
这个步骤只传递数据到form2中(获取表单数据通过转发到form2)
2:是form2接受form1的数据
这个步骤是接受form1的数据并且计算你的那些(评定等级具体算法:d=大学计算机成绩*0.
2+外语*0.2
+高等数学*0.2
+平时成绩*0.4
d>85分,为A等,
d>70
分,为B等,
否则为C等。)然后显示在要显示的textbox中或lable中,这样就ok了!!试试吧! 参考技术A 一楼的没有说清楚。
二楼的有问题,
form1
里面差不多,但是系统默认的是textbox1,textbox2……不是txtScoreComputer……
form2
里面直接用
this.txtStuNumber.Text
=
Form1.StuNumber;
this.txtStuName.Text
=
Form1.StuName;
this.txtScoreComputer.Text
=
Form1.ScoreComputer;
this.txtScoreLanguage.Text
=
Form1.ScoreLanguage;
this.txtScoreHighMath.Text
=
Form1.ScoreHighMath;
this.txtScorePeaceTime.Text
=
Form1.ScorePeaceTime;
好像用不了吧?
既然form1里面都把值赋给定义的
public
static
string
StuName;
public
static
string
ScoreComputer;
public
static
string
ScoreLanguage;
public
static
string
ScoreHighMath;
public
static
string
ScorePeaceTime;
了,所以form2直接用Form1.StuNumber等等就可以了。
以上是关于C# form2如何用form1中的数据的主要内容,如果未能解决你的问题,请参考以下文章