如下所示,我希望总数显示在标签1中。我该怎么办?
In [129]: alist = ['"a(1).t1"', '"b(2).t1"', 'c.t1']
In [130]: astr = ' '.join(alist)
In [131]: !touch $astr
In [132]: !ls *.t1
'a(1).t1' a.t1 'b(2).t1' b.t1 c.t1
答案 0 :(得分:0)
编辑Form1_Load
方法。在遍历数据集行的循环内,将值加到变量中。然后,显示该变量的值:
// Variable to store total value
decimal totalValue = 0;
for (int i = 0; i < ds.Tables[0].Rows.Count; i++)
{
comboBox1.Items.Add(ds.Tables[0].Rows[i][0] + " | " + ds.Tables[0].Rows[i][1] + " | € " + ds.Tables[0].Rows[i][2]);
// Sum up total value
totalValue += ds.Tables[0].Rows[i][2];
}
// Update label to show total value
label1.Text = totalValue.ToString("#.00");