我有两个datagridview,一个在职员电话上,我要让另一个包含做电话的职员的数量

以下图像显示了我的两个datagrid视图

我有两个datagridview,一个在职员电话上,我要让另一个包含做电话的职员的数量

pandadizi 回答:我有两个datagridview,一个在职员电话上,我要让另一个包含做电话的职员的数量

根据您对问题的了解,可以使用以下方法

      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;
    }

每次在第一张表中添加或删除一行时,您都可以调用此方法。

更新您要求的按钮

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

            dataGridView2.DataSource = numOfCalls(dt);

        }
本文链接:https://www.f2er.com/3087111.html

大家都在问