我有两个datagridview,一个关于员工电话,我想让另一个包含员工的电话号码

I have two datagridview, one on the staff calls, I want to make the other contain the number of staff did the call

下图显示了我的两个数据网格视图

根据你的问题我了解到,你可以使用下面的方法

      public DataTable numOfCalls(DataTable table)
    {
        //Initialize Result Table
        DataTable numOfCallsTable = new DataTable();
        numOfCallsTable.Columns.Add("agentName", typeof(string));
        numOfCallsTable.Columns.Add("numOfCall", typeof(int));

        // Get the unique agents
        DataView view = new DataView(table);
        DataTable distinctValues = view.ToTable(true, "agentName");

        // Check if there are agents
        if (distinctValues.Rows.Count > 0)
        {
            // Loop thru the agents
            for (int i = 0; i < distinctValues.Rows.Count; i++)
            {
                string agentName = distinctValues.Rows[i]["agentName"].ToString();
                // Get all the rows that this agent has
                DataRow[] agentRows = table.Select($"agentName='{agentName}'");
                // And then fill the second table
                DataRow newRow = numOfCallsTable.NewRow();
                newRow["agentName"] = agentName;
                newRow["numOfCall"] = agentRows.Length;
                numOfCallsTable.Rows.Add(newRow);
            }
        }
        return numOfCallsTable;
    }

在第一个table.

每增加或删除一行都可以调用此方法

更新您要求的按钮

        private void Button1_Click(object sender, EventArgs e)
        {
            DataTable dt = new DataTable();
            dt = (DataTable)dataGridView1.DataSource;

            dataGridView2.DataSource = numOfCalls(dt);

        }