C#中,如何在一个窗口中调用另一个窗口中TextBox里已有的值?

2024年11月14日 02:28
有3个网友回答
网友(1):

1)在Form3的后台代码

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 WindowsFormsApplication4
{
    public partial class Form3 : Form
    {
        public Form3()
        {
            InitializeComponent();
        }
        public Form3(string text)
            : this()
        {
            textBox1.Text = text;
        }
    }
}

2)在Form1中,假设点击button1显示Form3,后台代码

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 WindowsFormsApplication4
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
        private void button1_Click(object sender, EventArgs e)
        {
            Form3 f3 = new Form3(textBox3.Text);
            f3.Show();
        }
    }
}

网友(2):

最简单的办法,在form1中设置一个public
string
的变量记录textbox中的值,这样就可以在form2中直接访问form1中的这个变量

网友(3):

你想在什么时候form3里的textbox才显示form1里那个textbox的值。