DataGrid的问题
怎么样用鼠标在DataGrid控件中点击一行,就把数据显示在几个TextBox控件中?
private void dataGrid1_Click(object sender, System.EventArgs e)
{
try
{
int cur=this.Cur();
this.label1.Text=this.ds.Tables[0].Rows[cur]["picname"].ToString();
}
catch(Exception e)
{
MessageBox.Show(e.Message);
}
}