我有DataGrid,它显示了MySQL数据库中的一些值。我需要,如果我点击任何列,该值将保存为字符串。它甚至可能吗?
这是显示数据网格中的mysql表的代码
try
{
conn.Open();
MySqlCommand cmd = new MySqlCommand("Select Jméno from info", conn);
MySqlDataAdapter adp = new MySqlDataAdapter(cmd);
DataSet ds = new DataSet();
adp.Fill(ds, "LoadDataBinding");
dataGridCustomers.DataContext = ds;
}
catch
{
WarnWindow vv1 = new WarnWindow(1);
vv1.ShowDialog();
}
finally
{
conn.Close();
}
但如果我点击(例如)Bohumil Homola,这个值应保存为:
string name = Bohumil Homola (column value);