文章分類/Infragistics
要獲取 XamDataGrid 中選定的行,請參閱 XamDataGrid 的 SelectedItems Records 屬性。獲取所選行的 DataRecord 對象的集合。
foreach(DataRecord dr in xamDataGrid1.SelectedItems.Records) { foreach(Cell cell in dr.Cells) { System.Diagnostics.Debug.Write(cell.Value.ToString()); if(dr.Cells.IndexOf(cell) < dr.Cells.Count - 1) System.Diagnostics.Debug.Write(", "); } System.Diagnostics.Debug.WriteLine(""); }