0

我正在尝试做一些非常简单的事情(至少我是这么认为的)。我有一个带有 a 的表格,Split Container每个部分(它们都是两个)只有 atextBox并且我的想法是当我在 textBox1 写作时将这个文本可视化为textBox2. 我知道如何将一些数据从一个盒子传递到另一个盒子,但我不知道如何获取值textBox并将其传递给另一个盒子。我再次想提一下,这 2 个文本框是一种形式,所以我想这应该是一项非常容易的任务。这是我的代码:

 public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void textBox1_TextChanged(object sender, EventArgs e)
        {
            //how to get the text from textBox1?
            textBox2.AppendText("I want to pass the text form textBox1");
        }
    }

而且,我正在使用Visual Studio 2010.

4

4 回答 4

4

是不是很简单:-

textBox2.Text = textBox1.Text;

?

于 2013-01-23T08:35:59.520 回答
4
 private void textBox1_TextChanged(object sender, EventArgs e)
        {                
            textBox2.Text = textBox1.Text;
        }
于 2013-01-23T08:38:51.883 回答
1

试试这个

 `private void textBox1_TextChanged(object sender, EventArgs e)
        {
            //how to get the text from textBox1?
            textBox2 = textBox1.Text;
        }`
于 2013-01-23T08:36:10.167 回答
1

如果您只想从 textbox1 获取文本,请使用以下命令:

private void textBox1_TextChanged(object sender, EventArgs e)
        {
            //how to get the text from textBox1?
            textBox2 = textBox1.Text;
        }

但是如果你想将文本从 textbox1 添加到 textbox2 使用这个:

private void textBox1_TextChanged(object sender, EventArgs e)      
{
            //how to get the text from textBox1?
            textBox2.AppendText(textbox1.text);
        }
于 2013-01-23T15:15:34.807 回答