如何使用组合框项目作为数字来添加这些项目使用的实例?

时间:2016-02-10 09:28:48

标签: c# datagridview combobox

我有一个带有项目的组合框"常规假日"和#34;特殊非工作假期"这包含在我的datagridview中。我只想问我是否可以将它们的值添加为数字(使用组合框项目的实例),这样我就可以将总和放在我的列表视图中。这是在C#。

1 个答案:

答案 0 :(得分:0)

    public string TotalHoliday()
    {
        int RegHD = 0;
        int SpclHD = 0;

        foreach (DataGridViewRow row in dataGridView1.Rows)
        {
            if (row.IsNewRow) break;
            object HD = row.Cells["Holidays"].Value;
            if (!Convert.IsDBNull(HD) && HD != null && HD.ToString() == "Regular")
            {
                RegHD++;
            }
            else if (!Convert.IsDBNull(HD) && HD != null && HD.ToString() == "Special Non-working")
            {
                SpclHD++;
            }
        }

        int totHD = RegHD + SpclHD;
        string totalHD = totHD.ToString();
        return totalHD;
    }

我已经想出了这个。无论如何,谢谢你有时间回答我的问题。我很感激。