在datagridview中设置值和字符串
本文关键字:字符串 设置 datagridview | 更新日期: 2023-09-27 18:06:22
这个问题可能是非常基本的。但是我想说清楚:
假设我有这样一个代码:
string currentToner = (string)((Hashtable)ht[1])["value"];
string maxToner = (string)((Hashtable)ht[2])["value"];
现在我想在数据网格视图中设置这个值。
int number = dataGridView1.Rows.Add();
dataGridView1.Rows[number].Cells[0].Value = currentToner."/".maxToner; //-->this is not the correct way.
如何设置值,使其看起来像:
5000/10000
你用的是PHP的方式,c#的字符串连接用的是加号
dataGridView1.Rows[number].Cells[0].Value = currentToner + "/" + maxToner;
你也可以格式化字符串
dataGridView1.Rows[number].Cells[0].Value = string.Format("{0}/{1}", currentToner, maxToner);
如果要显示string
,则设置string
为值:
dataGridView1.Rows[number].Cells[0].Value = currentToner + "/" + maxToner;