web-dev-qa-db-ja.com

datagridview列に合計を表示するにはどうすればよいですか?

このcountdatagridview列の合計を表示する必要がありますが、datagridviewのデータにどのようにアクセスできるかわかりません。

ボタンをクリックすると、94 in label1

これをどのように行うことができますか?

alt text

25
mahnaz
int sum = 0;
for (int i = 0; i < dataGridView1.Rows.Count; ++i)
{
    sum += Convert.ToInt32(dataGridView1.Rows[i].Cells[1].Value);
}
label1.Text = sum.ToString();
34
JamesMLV

LINQを使用した高速でクリーンな方法

int total = dataGridView1.Rows.Cast<DataGridViewRow>()
                .Sum(t => Convert.ToInt32(t.Cells[1].Value));

vS2013で検証済み

16

グリッドがDataTableにバインドされている場合、次のようにできると思います。

// Should probably add a DBNull check for safety; but you get the idea.
long sum = (long)table.Compute("Sum(count)", "True");

ではないテーブルにバインドされている場合、簡単に次のようにすることができます。

var table = new DataTable();
table.Columns.Add("type", typeof(string));
table.Columns.Add("count", typeof(int));

// This will automatically create the DataGridView's columns.
dataGridView.DataSource = table;
14
Dan Tao

可能であれば、LINQを使用します。

  label1.Text =  dataGridView1.Rows.Cast<DataGridViewRow>()
                                   .AsEnumerable()
                                   .Sum(x => int.Parse(x.Cells[1].Value.ToString()))
                                   .ToString();
7
p.campbell
 decimal Total = 0;

for (int i = 0; i < dataGridView1.Rows.Count; i++)
{
    Total+= Convert.ToDecimal(dataGridView1.Rows[i].Cells["ColumnName"].Value);
  }

labelName.Text = Total.ToString();
3
Sherin Reji

グリッドにバインドされるデータコレクションに合計行を追加します。

2
dretzlaff17
//declare the total variable
int total = 0;
//loop through the datagrid and sum the column 
for(int i=0;i<datagridview1.Rows.Count;i++)
{
    total +=int.Parse(datagridview1.Rows[i].Cells["CELL NAME OR INDEX"].Value.ToString());

}
string tota
1
FELIXKIPRONO

2つのデータグリッドビューでそれをより良くすることができます。同じデータソースを追加し、2番目のヘッダーを非表示にし、2番目の高さを最初の行の高さに設定し、2番目のサイズ変更可能な属性をすべてオフにし、同期します両方のスクロールバー、水平方向のみ、2番目のボタンを最初のボタンに配置します。

見てみましょう:

   dgv3.ColumnHeadersVisible = false;
   dgv3.Height = dgv1.Rows[0].Height;
   dgv3.Location = new Point(Xdgvx, this.dgv1.Height - dgv3.Height - SystemInformation.HorizontalScrollBarHeight);
   dgv3.Width = dgv1.Width;

   private void dgv1_Scroll(object sender, ScrollEventArgs e)
        {
            if (e.ScrollOrientation == ScrollOrientation.HorizontalScroll)
            {
                dgv3.HorizontalScrollingOffset = e.NewValue;
            }
        }
1
andor