从另一个表单文本框中获取文本框值

从另一个表单文本框中获取文本框值

本文介绍了从另一个表单文本框中获取文本框值.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

大家好,

我试图从Form 1获取一个文本框的值,当Form 2加载时,Form2的文本框应显示该值.我正在使用c#.

任何人都可以帮忙吗?

Hello everybody,

Im trying to get a value of a textbox from Form 1 and when Form 2 loads the textbox of Form2 should show that value. Im using c#.

Anyone can help pls?

推荐答案



private Form2 otherForm;
private void GetOtherFormTextBox()
{
    textBox1.Text = otherForm.TextBox1.Text;
}


在Form2.cs中:


In Form2.cs:

public TextBox TextBox1
{
    get
    {
        return textBox1;
    }
}


这篇关于从另一个表单文本框中获取文本框值.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 17:12