我需要帮助将 Form2.textbox1 中的输入传递给 Form1.sti Form1 = 主工作窗口 Form2 = 弹出窗口,以输入路径。
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void Form2_Load(object sender, EventArgs e)
{
}
public string sti { get; set; }
private void button1_Click(object sender, EventArgs e)
{
textBox1.Text = sti;
this.Close();
}
}
public partial class Form1 : Form
{
int CountR = 1;
public Form1()
{
InitializeComponent();
}
public string sti { get; set; }
public void Form1_Load(object sender, EventArgs e)
{
Form2 popup = new Form2();
popup.ShowDialog();
popup.Dispose();
}
public void button1_Click(object sender, EventArgs e)
{
Label7.Text = sti;
}
但它总是返回 Null。
我以这种方式构建它是因为我不希望用户只与 IT 管理员混淆路径。
先感谢您