C# datagrid 怎么当前列获取行中的数据 (不是dataGridView)
展开全部
估计“打印”是一个LinkButton,你把该Linkbutton的CommandName设置为print,然后在该DataGrid控件的事件里找到ItemCommand,双击进入该事件。然后:
if (e.CommandName == "print")
{
string id = e.Item.Cells[0].Text;
string carNum = e.Item.Cells[1].Text;
string carType = e.Item.Cells[2].Text;
string address = e.Item.Cells[3].Text;
string time = e.Item.Cells[4].Text;
string action = e.Item.Cells[5].Text;
string isPrint = e.Item.Cells[6].Text;
Page.ClientScript.RegisterStartupScript(this.GetType(), "", string.Format("<script>alert('[id:{0}][carNum:{1}][carType:{2}][address:{3}][time:{4}][action:{5}][isPrint:{6}]');</script>", id, carNum, carType, address, time, action, isPrint));
}
这样就获取到了~~~~~~~
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
根据SelectedItem属性找到选中行的的id,然后根据id查找datagrid绑定的DataSource中对应id的数据,然后打印出来
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
if (this.dataGridView3.SelectedRows.Count > 0)
{
DialogResult dr = MessageBox.Show("确定打印选中的记录 ", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
if (dr == DialogResult.OK)
{
try
{
foreach (DataGridViewRow row in this.dataGridView3.SelectedRows) //遍历所选中的dataGridView记录行
{
number = row.Cells[2].Value.ToString();//获取车型取打印行中第三列的值
ids = row.Cells[1].Value.ToString();//获取车牌号取打印行中第二列的值
//执行打印操作 下面写打印代码将获取的信息打印出来
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), "提示");
}
}
else
{
return;
}
}
{
DialogResult dr = MessageBox.Show("确定打印选中的记录 ", "提示", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
if (dr == DialogResult.OK)
{
try
{
foreach (DataGridViewRow row in this.dataGridView3.SelectedRows) //遍历所选中的dataGridView记录行
{
number = row.Cells[2].Value.ToString();//获取车型取打印行中第三列的值
ids = row.Cells[1].Value.ToString();//获取车牌号取打印行中第二列的值
//执行打印操作 下面写打印代码将获取的信息打印出来
}
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString(), "提示");
}
}
else
{
return;
}
}
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询