在所选项目的文本框中显示所有数据的简化方法是什么...例如:
如果我点击网站数据,如何在文本框中显示来自同一沙龙的所有其他数据?
这是我在MySql的数据网格中显示数据的方式:
private void btnShow_Click(object sender, RoutedEventArgs e)
{
string connection = "server=localhost;user id=root; password=root; database=pop-sf40-database";
string query = String.Format("SELECT * FROM salons");
MySqlConnection cn = new MySqlConnection(connection);
cn.Open();
MySqlCommand command = new MySqlCommand(query, cn);
MySqlDataAdapter da = new MySqlDataAdapter(command);
DataTable data = new DataTable();
da.Fill(data);
dgSalons.DataContext = data;
}
答案 0 :(得分:0)
我相信这就是你想要的:
// Assumes the DataGrid is bound to a DataTable.
DataTable myTable = (DataTable) dgSalons.DataSource;
txtSample.Text = myTable.Rows[dgSalons.CurrentCell.RowNumber].Cells["Yourcolname"].Value.ToString();