Totals Row in a DataGridView

后端 未结 3 1838
忘掉有多难
忘掉有多难 2021-01-20 07:41

I am developing a winform application application. I wanted to show sum of columns in last row of each column. This row must always be visible.

At moment I am thinki

3条回答
  •  再見小時候
    2021-01-20 08:20

    No, need of adding another datagridview

    Solution 1: Please refer to this solution

    Solution 2: If the above link is not exactly what you want then,

    You can try to manually add last, summary, row in which you can display information that you need. For example, you can try to do the following:

    1. Read data from database and fill System.Data.DataTable
    2. Add one column to the newly created DataTable – that column might be set to true for the last, summary, row
    3. Programmatically add one extra row that contains suitable summary data
    4. Do the data binding to DataGridView control
    5. Using appropriate event, bold or otherwise graphically distinct summary row (row that have extra column value set to true)

提交回复
热议问题