Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have WPF application, In which we use DataGrid on one form. Now we want to calculate total of "AMOUNT" column of that datagrid on Winddow_Loaded event, So can it will display total of AMOUNT column in one TextBox when Form get loaded. So how to iterate through all rows in DATAGRID & Calculate Total of "AMOUNT" column.

How to show this total in Footer of WPF Datagrid.?

share|improve this question
How do you populate the DataGrid? – Andrey Gordeev Feb 12 at 7:40
I have populated DataGrid by adding manually rows in it, When we open form in EDIT mode, at that time DATA will be fetched from Database. So Now when we open form in EDIT mode, DATAGRID populated from Database, How to iterate through it? – Constant Learner Feb 12 at 8:33

2 Answers

up vote 1 down vote accepted

Bind DataGrid to DataTable. After that you can just iterate through all rows:

        double sum = 0;
        foreach (var row in myTable)
        {
            sum += double.Parse(row["AMOUNT"].ToString());
        }
        myTextBox.Text = sum.ToString()
share|improve this answer
Okay, I will try & Let you Know. Thanks for this – Constant Learner Feb 12 at 8:43
Will you please help to Convert my DATAGRID into DATATABLE? – Constant Learner Feb 12 at 8:46
I have converted my DATAGRID Into DataTable. – Constant Learner Feb 12 at 9:28
I have done it, Thanks for showing me the way to do it.. :) – Constant Learner Feb 12 at 9:42
@ConstantLearner no problem :) – Andrey Gordeev Feb 12 at 9:50

Function to convert DataGrid to DataSet : namespace WpfApplication1 { static class ExtClass { public static DataSet ToDataSet(this IList list) { Type elementType = typeof(T); DataSet ds = new DataSet(); DataTable t = new DataTable(); ds.Tables.Add(t);

         //add a column to table for each public property on T
         foreach (var propInfo in elementType.GetProperties())
         {
             Type ColType = Nullable.GetUnderlyingType(propInfo.PropertyType) ?? propInfo.PropertyType;

             t.Columns.Add(propInfo.Name, ColType);
         }

         //go through each property on T and add each value to the table
         foreach (T item in list)
         {
             DataRow row = t.NewRow();

             foreach (var propInfo in elementType.GetProperties())
             {
                 row[propInfo.Name] = propInfo.GetValue(item, null) ?? DBNull.Value;
             }

             t.Rows.Add(row);
         }

         return ds;
     }

}

}

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.