将文本框字符串从一个表单发送到另一个表单的列表框

时间:2015-03-27 05:07:11

标签: c# winforms listbox

我已在上面上传了我的代码。我面临的问题是试图从textBox1&获取文本。 form2中的textBox2进入form1中的listBox。当用户打开第二个表单时,他们应该将文本放入文本框中并在单击按钮时 - 它应该关闭form2并将文本插入form1的listBox

我尝试了很多东西,但我似乎无法做到。我也是c#编码的新手,刚开始使用Windows窗体,所以任何帮助都会非常感激。

FORM 1 CODE BELOW

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ToDoList
{
    public partial class Form1 : Form
    {
        List<string> _items = new List<string>();
        public Form1()
        {
            InitializeComponent();
            Form2 form2 = new Form2();
            _items.Add("TITLE\t\t\tDESCRIPTION\t\t\t\t\t\tPRIORITY\tDUE DATE");
            listBox1.DataSource = _items;


        }

        private void filesToolStripMenuItem_Click(object sender, EventArgs e)
        {

        }

        private void openToolStripMenuItem_Click(object sender, EventArgs e)
        {
            Form2 form2 = new Form2();
            form2.Show();
        }

        private void exitToolStripMenuItem_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        public void listView1_SelectedIndexChanged(object sender, EventArgs e)
        {



        }

        public void button2_Click(object sender, EventArgs e)
        {


        }

        public void listBox1_SelectedIndexChanged(object sender, EventArgs e)
        {

        }

        public void listView1_SelectedIndexChanged_1(object sender, EventArgs e)
        {

        }

        private void listBox1_SelectedIndexChanged_1(object sender, EventArgs e)
        {

        }
    }
}

FORM 2 CODE BELOW

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace ToDoList
{
    public partial class Form2 : Form
    {
        List<string> _items = new List<string>();
        public Form2()
        {
            InitializeComponent();
        }

        public void button2_Click(object sender, EventArgs e, string tbtext)
        {
            //Form1 form1 = new Form1();
            //form1.listBox1.Items.Add(tbtext);
            Form1 form1 = new Form1();
            _items.Add(textBox1.Text);
            _items.Add(textBox2.Text);
            _items.Add(comboBox1.Text);

            form1.listBox1.DataSource = null;
            form1.listBox1.DataSource = _items;

        }

        public void button1_Click(object sender, EventArgs e)
        {
            this.Close();
        }

        public void textBox1_TextChanged(object sender, EventArgs e)
        {


        }

        private void button2_Click(object sender, EventArgs e)
        {






            //IF THE USER DOES NOT ENTER items IN THE SPACES THESE IF STATEMENTS BRING A MESSAGEBOX 
            if (string.IsNullOrWhiteSpace(this.textBox2.Text) && string.IsNullOrWhiteSpace(this.textBox1.Text))
            {
                MessageBox.Show("Please Fill The Entries");

            }

            else
            {
                if (string.IsNullOrWhiteSpace(this.textBox1.Text))
                {
                    MessageBox.Show("Please Enter A Task Name");
                }

                if (string.IsNullOrWhiteSpace(this.textBox2.Text))
                {
                    MessageBox.Show("Please Enter A Description");
                }
            }
        }

        public void textBox1_TextChanged_1(object sender, EventArgs e)
        {

        }

        public void textBox2_TextChanged(object sender, EventArgs e)
        {

        }

        public void comboBox1_SelectedIndexChanged(object sender, EventArgs e)
        {

        }
    }
}

1 个答案:

答案 0 :(得分:2)

您的总体想法是正确的,但您必须了解的是Mark在评论中所说的内容。在Form1中创建Form2并向该表单添加数据将无法正常工作,因为一旦Form2关闭,Form1的实例就不再存在。 I.E.您当前正在做的事情看起来像树层次结构:

Form1 (open Form2)
  |
  +-> Form2 (open and save to Form1)
        |
        +-> Form1 (contains saved data but you never see it)

原始Form1是父级。它负责开放Form2。使用ShowDialogForm1可能会知道Form2是如何关闭的。因为它是父表单,所以它可以访问Form2上的任何公共属性。所以说Form2有以下公开字段:

public TextBox textBox1;
public TextBox textBox2;

然后你可以从这些中检索数据:

public void SomeMethodInForm1()
{
   Form2 form2 = new Form2();

   // Show form2 as a modal dialog and determine if DialogResult = OK. 
   if (form2.ShowDialog(this) == DialogResult.OK)
   {
      // Read the contents of form2's TextBox. 
      this._items.Add(form2.textBox1.Text);
      this._items.Add(form2.textBox2.Text);

      this.listBox1.DataSource = null;
      this.listBox1.DataSource = _items;
   }

   form2.Dispose();
}