从WPF中的DataGridRow获取Column值

时间:2013-01-18 10:48:02

标签: c# wpf wpf-controls wpfdatagrid

我正在创建一个WPF应用程序,当用户点击DataGrid的一行时,我需要获取一个Column值并使用该值我需要从Database获取数据。

我能够找到DataGridRow但无法获取列值。这是我的代码......

DataGridRow BillRow = sender as DataGridRow;

我将选定的行详细信息放入BillRow(我能够在Visualiser中看到它们),但无法将值放入变量中。你能帮助我吗 ??

1 个答案:

答案 0 :(得分:3)

以下解决方案可能会对您有所帮助

 public static DataGridCell GetCell(DataGrid dataGrid, int row, int column)
    {
        DataGridRow rowContainer = GetRow(dataGrid, row);
        if (rowContainer != null)
        {
            DataGridCellsPresenter presenter = GetVisualChild<DataGridCellsPresenter>(rowContainer);

            // try to get the cell but it may possibly be virtualized
            DataGridCell cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
            if (cell == null)
            {
                // now try to bring into view and retreive the cell
                dataGrid.ScrollIntoView(rowContainer, dataGrid.Columns[column]);

                cell = (DataGridCell)presenter.ItemContainerGenerator.ContainerFromIndex(column);
            }

            return cell;
        }

        return null;
     }