2

我有一个dataGridView1,dataGridView2ButtonAdd一个表格。

用户将:

1-选择任何一个“单元格”或“整行”。

2-选择多行

然后:

单击按钮时,所选数据将从 dataGridView1 移动到 dataGridView2。这就是我需要做的。

我的尝试:

经过多次搜索,我已经尝试了这个解决方案,它几乎完成了,但有一个我无法处理的小问题:

完整代码:

private const string strconneciton = @"YourConnectionString";
    SqlConnection con = new SqlConnection(strconneciton);
    SqlCommand cmd = new SqlCommand();
    DataTable dataTable;

private void loadDataIntoGridView1()
    {
        try
        {
            con.Open();
            cmd.CommandText = "SELECT id, accNum, accName FROM Employees";
            cmd.Connection = con;

            SqlDataAdapter adapter = new SqlDataAdapter();
            adapter.SelectCommand = cmd;

            dataTable = new DataTable();
            adapter.Fill(dataTable);

            BindingSource bSource = new BindingSource();
            bSource.DataSource = dataTable;
            dataGridView1.DataSource = bSource;

            //i don't know if this line is useful...
            dataGridView2.DataSource = dataTable.Clone();

            adapter.Update(dataTable);
            con.Close();

        }
        catch (Exception ed)
        {
            con.Close();
            MessageBox.Show(ed.Message);
        }
    }//end loadDataIntoGridView1


private void buttonSend_Click(object sender, EventArgs e)
{       
    if (dataGridView1.SelectedCells.Count > 0)
    {
        foreach (DataGridViewCell oneCell in dataGridView1.SelectedCells)
        {
            if (oneCell.Selected)
            {
                //this should add the rows that is selected from dataGridView1 and,
                //pass it to dataGridView2
                var currentRow = ((DataRowView)dataGridView1.CurrentRow.DataBoundItem).Row;
                 ((DataTable)dataGridView2.DataSource).ImportRow(currentRow);

                //this will remove the rows you have selected from dataGridView1
                dataGridView1.Rows.RemoveAt(oneCell.RowIndex);
            }//end if
        }//end foreach
    }//end if
}//end button click

让我们调试:

在开始之前只注意一件事:

  • 删除行(多行或单行)的方法在所有情况下都可以正常工作。
  • 添加到 DGV2 的方法是问题所在,我是从这里获取的……在选择单行而不是多行时效果很好。

1-如果您选择了一个单元格/行,它将成功添加和删除。

2-如果您选择了多行,可以说第一行和第二行,它将添加第二行和第三行,那么肯定会删除它们,但只添加了一个.. 为什么?!

因为这里

var currentRow = ((DataRowView)dataGridView1.CurrentRow.DataBoundItem).Row;
            ((DataTable)dataGridView2.DataSource).ImportRow(currentRow);   

获取 DGV1 中现有行的当前索引并迭代到选择行的数量并将它们添加到 DGV2。

截屏:

该过程如何完成的图像: 该过程如何完成的图像

我需要做什么: 我需要做什么

应该怎么做才能解决这个问题?

4

3 回答 3

1

尽管 marco 有一个观点,但该行的所有权是作为异常抛出的表。要绕过这个,你可能想这样做......

// 根据您要插入的表创建一个新行 // 插入具有相同结构的 INTO

var copyRow = table.NewRow(); 
copyRow.ItemArray = currentRow.ItemArray;
table.Rows.Add( copyRow );

ItemArray 是按顺序排列的表的所有列属性的列表,无需显式引用 Row["someColumn"]。因此,将数组复制到新行可以获得所有列。这是 - 如果两个表结构相同 - 并且似乎来自您提供的场景。

澄清

上面的代码只执行一行,并且将根据您的循环应用

if (oneCell.Selected)

您每行选择了多个列,从而对循环造成了一些混乱。您实际上多次击中同一行。无论如何,我发现您实际上是在 Windows 应用程序中执行此操作,而不是 WPF。我创建了一个表单并发布了下面的代码。

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

    public DataTable tblFrom { get; set; }
    public DataTable tblTo { get; set; }
    private void loadDataIntoGridView1()
    {
        tblFrom = new DataTable();
        tblFrom.Columns.Add("Col1", typeof(string));
        tblFrom.Columns.Add("Col2", typeof(string));

        tblTo = tblFrom.Clone();

        DataRow tmp;
        while (tblFrom.Rows.Count < 20)
        {
            tmp = tblFrom.NewRow();
            tmp["Col1"] = "my row " + tblFrom.Rows.Count;
            tmp["Col2"] = "testing";
            tblFrom.Rows.Add(tmp);
        } 

        dataGridView1.AutoGenerateColumns = true;
        dataGridView1.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
        dataGridView2.AutoGenerateColumns = true;
        dataGridView2.SelectionMode = DataGridViewSelectionMode.FullRowSelect;
        dataGridView1.DataSource = tblFrom;
        dataGridView2.DataSource = tblTo;
    }

    private void button1_Click(object sender, System.EventArgs e)
    {
        // if no ROWS selected, get out.
        if (dataGridView1.SelectedRows.Count == 0)
            return;

        foreach( DataGridViewRow vr in dataGridView1.SelectedRows)
        {
            var currentRow = ((DataRowView)vr.DataBoundItem).Row;
            ((DataTable)dataGridView2.DataSource).ImportRow(currentRow);

            //this will remove the rows you have selected from dataGridView1
            dataGridView1.Rows.RemoveAt(vr.Index);
        }
    }
}

在这里,我有一个表格,其中包含与您所拥有的类似的两个网格和一个用于“移动”记录的按钮(但只有一个方向),您必须针对一个/全部/从/到方向进行调整。

一些变化。我更改了网格以强制选择模式为整个 ROW。这将防止单行出现多个条目,因为您有多个可用列。通过在单元格之间拖动或 Ctrl+单击单个行仍然可以进行多选。这允许选择不在同一可视屏幕区域内的行。

我还只是做了一个创建表来强制模拟 20 行数据以强制不是所有行同时可见。

接下来是点击事件...如果没有选择ROWS,请退出...如果有,请循环通过,但是如果有多个列,则每行执行一次而不是多次。获取绑定数据行,导入删除...

否则你非常接近,不需要复制数组。我认为总体问题是您的列模式选择多次达到相同的记录。在第一个单元格的第 0 行删除后,第 1 行变为第 0 行,因此将其复制,删除,您现在不在列表中,因为只剩下一条记录要处理。在这里,我们得到了整行一次,而不管它选择了哪一列。

于 2017-11-28T13:12:58.793 回答
0

这是一个完整的片段。在此示例中,我使用 2BindingList来满足您的要求。用户单击按钮后,示例会将所选项目从 复制dgv1datadgv2data。然后它将从中删除项目dgv1data

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Windows.Forms;

namespace MoveDataBetweenDataGridView_47454256
{
    public partial class Form1 : Form
    {
        static BindingList<dgventry> dgv1data = new BindingList<dgventry>();
        static BindingList<dgventry> dgv2data = new BindingList<dgventry>();
        DataGridView dgv1 = new DataGridView();
        DataGridView dgv2 = new DataGridView();
        Button btn = new Button();

        public Form1()
        {
            InitializeComponent();

            InitOurStuff();
            for (int i = 0; i < 10; i++)
            {
                dgv1data.Add(new MoveDataBetweenDataGridView_47454256.dgventry
                {
                    col1 = $"col1_{i}", col2 = $"col2_{i}", col3 = $"col3_{i}"});
                }

        }

        private void InitOurStuff()
        {
            this.Controls.Add(dgv1);//add the DGV to the form
            dgv1.DataSource = dgv1data;//bind our data to it
            dgv1.Dock = DockStyle.Left;//place the DGV somewhere on the form

            this.Controls.Add(dgv2);//add the DGV to the form
            dgv2.DataSource = dgv2data;//bind out data to it
            dgv2.Dock = DockStyle.Right;//place the DGV somewhere on the form

            this.Controls.Add(btn);//add the Button to the form
            btn.Dock = DockStyle.Bottom;//place the Button somewhere on the form
            btn.Click += Btn_Click;//give the Button a event handler
        }




        private void Btn_Click(object sender, EventArgs e)
        {
            List<int> doneIndices = new List<int>();//this will keep track of the row indices we have dealt with

            if (dgv1.SelectedCells.Count > 0)//if something is selected
            {
                foreach (DataGridViewCell item in dgv1.SelectedCells)//loop through the selected cells
                {
                    if (!doneIndices.Contains(item.OwningRow.Index))//if this cell does not belong to a row index we already processed
                    {
                        //we haven't done this row yet
                        dgv2data.Add((dgventry)item.OwningRow.DataBoundItem);//add the DataBoundItem to the other DGV data
                        doneIndices.Add(item.OwningRow.Index);//put the current row index in our tracking list
                    }
                    else
                    {
                        //we have done this row already, move on to the next one
                        continue;
                    }
                }
            }

            //remove all the duplicate entries
            foreach (dgventry item in dgv2data)
            {
                dgv1data.Remove(item);
            }
        }
    }



    public class dgventry
    {
        public string col1 { get; set; }
        public string col2 { get; set; }
        public string col3 { get; set; }

    }
}
于 2017-11-29T16:30:10.800 回答
0

代替

ImportRow(currentRow)

使用这样的东西:

table.Rows.Add(currentRow);

让我知道这是否有效!

于 2017-11-23T11:47:47.800 回答