例如,我得到了带有textBox1和button1的Form1,并且我希望textBox1中的整数可以从另一个Form2中传递,传输或访问,并将其用于特定公式:
<
if ((!string.IsNullOrEmpty(wRectangle.Text) && !string.IsNullOrEmpty(hRectangle.Text)))
{
//Area of Rectangle:
aRectangle.Text = Convert.ToString(Convert.ToDouble(hRectangle.Text) * Convert.ToDouble(wRectangle.Text));