我是靠谱客的博主 狂野白云,最近开发中收集的这篇文章主要介绍silverlight中如何选中datagrid中一行并处理该行,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

采用为DataGrid添加CurrentCellChanged事件 ,来处理获得的行数据
private void dg_Device_CurrentCellChanged(object sender, EventArgs e)
{
DataGrid d = sender as DataGrid;
//获取DataGrid数据
List<Device> list=new List<Device>();
if(d!=null)
{
foreach(Device v in d.ItemsSource)
list.Add(v);
}
//获得当前选择的行
//这里就可以处理获取行的数据了
//以删除此行为例
Device device = (Device)d.SelectedItem;
if (device != null)
{
this.device = device;
list.Remove(device);
}
//删除后重新赋值给DataGrid
dg_Device.ItemsSource = list;
}


最后

以上就是狂野白云为你收集整理的silverlight中如何选中datagrid中一行并处理该行的全部内容,希望文章能够帮你解决silverlight中如何选中datagrid中一行并处理该行所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(53)

评论列表共有 0 条评论

立即
投稿
返回
顶部