本文介绍了如何在Silverlight中找到DataGrid中的选定行onDataGrid选择更改事件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
大家好
有人可以建议我如何在Silverlight中找到数据网格中的选定行
选择时发生更改的事件
hi all
can someone suggest me how to find the selected row in datagrid in silverlight
on selection changed event
推荐答案
private void grdStudent_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
Student oStudent = grdStudent.SelectedItem as Student;
txtID.Text = oStudent.student_id.ToString();
txtName.Text = oStudent.student_name;
txtAddress.Text = oStudent.address;
txtPhone.Text=oStudent.phone;
cmdCountry.SelectedValue = oStudent.country_id;
}
这篇关于如何在Silverlight中找到DataGrid中的选定行onDataGrid选择更改事件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!