-2

グリッド ビュー セルが小計グリッド ビューの下部に 0 を自動的に追加するのはなぜですか?

        int qty = 0;
        int amount = 0;
        int rowtotal = 0;
        int subtotal = 0;
        int total = 0;

        foreach (DataGridViewRow row in itemgridview.Rows)
        {
            qty = Convert.ToInt32(row.Cells[1].Value); 
            amount = Convert.ToInt32(row.Cells[2].Value); 
            rowtotal = qty * amount;
            row.Cells[3].Value = rowtotal;
            subtotal += rowtotal;

        }

        total = subtotal;
        txtordertotal.Text = total.ToString();
4

1 に答える 1

0

Make AllowUsersToAddRow = falseand then try again.このプロパティは、余分な行を削除します。

于 2013-01-23T18:31:00.963 に答える